using System;
using System.Linq;
using System.Collections.Generic;
public class Program
{
public static void Main()
dynamic thisIsNotgoingtoBeAnIEnumerable;
IEnumerable<string> thisOneIs;
thisIsNotgoingtoBeAnIEnumerable = thisOneIs = new List<string>();
thisOneIs.AsQueryable();
thisIsNotgoingtoBeAnIEnumerable.AsQueryable();
}