LINQ
Tuesday, August 16, 2011
LINQ: OfType
Query Operator?
›
LINQ comes with the OfType<T> query operator, through which we can filter the required object type from a heterogeneous array. Suppo...
What are Expression Trees?
›
Expression tree is the construct that has been developed for remote LINQ model. In a nutshell expression trees provide a separation layer be...
Use of let and into keyword, and how they help in making Progressive queries but still keep Defered execution.
›
into and let create temporary reference to store the result of a subquery/subexpression that can be later queried itself. These operator...
1 comment:
Use of IQueryable and IEnumerable interfaces
›
IEnumerable<T> is applicable for in-memory data querying, in contrast IQueryable<T> allows remote execution, like web service...
What are Interpreted Queries?
›
LINQ combines two architectural models: in-memory local and remote. The first one is basically LINQ-to-Objects and LINQ-to-XML . Local m...
What are Interpreted Queries?
›
LINQ combines two architectural models: in-memory local and remote. The first one is basically LINQ-to-Objects and LINQ-to-XML . Local m...
Explain Query Expression syntax, Fluent syntax, Mixed Queries.
›
Query expression syntax is based on the new keywords such as from , select , join , group by , order by etc. string [] words = { ...
›
Home
View web version