.NET Framework Interface, providing functionality to evaluate queries against a specific data source wherein the type of the data is not specified.
I'm getting into using the Repository Pattern for data access with the Entity Framework and LINQ as the underpinning of …
c# linq repository iqueryableI am wondering what the difference between IQueryable, List, IEnumerator is and when I should use each one? For instance …
c# linq list ienumerable iqueryableI want to merge the records of two IQueryable lists in C#. I try IQueryable<MediaType> list1 = values; …
c# iqueryableI am implementing paging in my GridView. From this article, I need two methods: public IQueryable BindEmployees(int startRowIndex, int …
c# asp.net linq iqueryableI do a sql query which returns a string - service name. this is the query: IQueryable<string> …
c# .net linq iqueryableSince there is no Linq to DB2 yet (c'mon IBM!), and I want to deal with IQueryables or IEnumerables in …
linq datatable ienumerable iqueryableI 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 iqueryableJust learning LINQ and i've come to a newbie roadblock in my test project. Can you explain what i'm doing …
c# linq iqueryablethis is my code... but i need select only column to display in my Datagridview. I Need the code to …
c# select iqueryableI'm trying to create a mock for my IRepository interface: public interface IRepository<T> : ICollection<T>, …
c# .net linq iqueryable