linq Immediate Execution

Bhaumik Patel 4:29 AM
The following sample shows how queries can be executed immediately with operators such as ToList(). public static void Immediate_Execution...Read More
linq Immediate Execution linq Immediate Execution Reviewed by Bhaumik Patel on 4:29 AM Rating: 5

linq Deferred Execution

Bhaumik Patel 4:23 AM
The following sample shows how query execution is deferred until the query is enumerated at a foreach statement. public static void Deferr...Read More
linq Deferred Execution linq Deferred Execution Reviewed by Bhaumik Patel on 4:23 AM Rating: 5

linq ElementAt

Bhaumik Patel 4:19 AM
This sample uses ElementAt to retrieve the second number greater than 5 from an array. public static void ElementAt()         {           ...Read More
linq ElementAt linq ElementAt Reviewed by Bhaumik Patel on 4:19 AM Rating: 5