.NET Framework Interface, providing functionality to evaluate queries against a specific data source wherein the type of the data is not specified.
What is the use of IQueryable in the context of LINQ? Is it used for developing extension methods or any …
c# linq iqueryableWhat is the difference between returning IQueryable<T> vs. IEnumerable<T>, when should one be preferred …
c# linq linq-to-sql ienumerable iqueryableWhat is the difference between IQueryable<T> and IEnumerable<T>? See also What's the difference between …
.net linq .net-3.5 ienumerable iqueryableI have IQueryable<> object. I want to Convert it into List<> with selected columns like new { …
c# list iqueryableI'm confused as to the difference. Being fairly new to .Net, I know I can query IEnumerables using the Linq …
linq ienumerable iqueryable .net-3.0Is the purpose of AsQueryable() just so you can pass around an IEnumerable to methods that might expect IQueryable, or …
c# .net linq ienumerable iqueryableI need to be able to either have an optional parameter in a Linq query, or be able to assign …
c# asp.net-mvc linq linq-to-sql iqueryableObfuscated Scenario: A person has zero, one or many pets. Using Linq to Sql, the need is to get an …
linq linq-to-sql collections iqueryablevar cityList = from country in doc.Element("result") .Element("cities") .Descendants("city") select new { Name = country.Element("name").Value, Code = …
c# linq iqueryableThe IQueryable results is queried from my db using LINQ, How do I add a new record to the IQueryable …
linq iqueryable