Top "Iqueryable" questions

.NET Framework Interface, providing functionality to evaluate queries against a specific data source wherein the type of the data is not specified.

Why use AsQueryable() instead of List()?

I'm getting into using the Repository Pattern for data access with the Entity Framework and LINQ as the underpinning of …

c# linq repository iqueryable
Differences between IQueryable, List, IEnumerator?

I am wondering what the difference between IQueryable, List, IEnumerator is and when I should use each one? For instance …

c# linq list ienumerable iqueryable
How to merge two IQueryable lists

I want to merge the records of two IQueryable lists in C#. I try IQueryable<MediaType> list1 = values; …

c# iqueryable
How to get the count from IQueryable

I am implementing paging in my GridView. From this article, I need two methods: public IQueryable BindEmployees(int startRowIndex, int …

c# asp.net linq iqueryable
how can I convert IQueryable<string> to string?

I do a sql query which returns a string - service name. this is the query: IQueryable<string> …

c# .net linq iqueryable
Convert Dataset to IQueryable<T> or IEnumerable<T>

Since there is no Linq to DB2 yet (c'mon IBM!), and I want to deal with IQueryables or IEnumerables in …

linq datatable ienumerable iqueryable
IQueryable order by two or more properties

I am currently ordering a list of custom objects using the IQueryable OrderBy method as follows: mylist.AsQueryable().OrderBy("PropertyName"); …

c# linq sorting c#-4.0 iqueryable
How to convert an IQueryable<T> to a List<T>?

Just learning LINQ and i've come to a newbie roadblock in my test project. Can you explain what i'm doing …

c# linq iqueryable
IQueryable C# Select

this is my code... but i need select only column to display in my Datagridview. I Need the code to …

c# select iqueryable
List<T> to implement IQueryable<T>

I'm trying to create a mock for my IRepository interface: public interface IRepository<T> : ICollection<T>, …

c# .net linq iqueryable