.NET Framework Interface, providing functionality to evaluate queries against a specific data source wherein the type of the data is not specified.
Let's say we have an IQueryable<T>. the Where clause can filter by single ID values, but how …
c# iqueryableAt point (3) in my code I have defined a query called query1 in which I defined a .Where lambda expression. …
c# lambda expression-trees iqueryable whereI've looked at the various solutions here but none of them seem to work for me, probably because I'm too …
linq iqueryable entitiesI need to be able to get something similar to the following to work: Type type = ??? // something decided at runtime …
c# linq reflection iqueryableUpdate 2013-08-22: After having a look at the 'Building an IQueryable provider series' (thanks for the link!) I got …
c# .net linq entity-framework iqueryableI've been learning about IQueryable and lazy loading/deferred execution of queries. Is it possible to expose this functionality over …
linq wcf iqueryable deferred-execution custom-linq-providersI use EntityFramework, I'm querying and returning partial data using Anonymous Types. Currently I'm using IQueryable<dynamic>, it …
c# linq iqueryable anonymous-typesI'm trying to apply the advice in this post: Tip 22 - How to make Include really Include It suggests a …
c# .net iqueryable eager-loading objectqueryI've got an ASP.NET WebAPI project. I've recently created EntityFramework entities for all my data tables. But I don't …
entity-framework asp.net-web-api odata iqueryableI have a IQueryable which is ordered by some condition. Now I want to know the position of a particular …
c# linq iqueryable