Search All Articles Submit your Website or Blog to A New Internet Library
Wednesday, November 26, 2008
Creating a LINQ query does not actually execute the query till the query is first enumerated when the application executes. This is known as:
1. Deferred Evaluation
2. Loop Evaluation
3. Slow Evaluation
4. Waiting Evaluation
Ans: 1
Deferred execution means that the evaluation of an expression is delayed until its realized value is actually required. Deferred execution can greatly improve performance when you have to manipulate large data collections, especially in programs that contain a series of chained queries or manipulations. In the best case, deferred execution enables only a single iteration through the source collection.
http://msdn.microsoft.com/en-us/library/bb943859.aspx
Subscribe to:
Post Comments (Atom)
Also Read other Top Articles
- JSON Serialization in VS 2008
- Implementing Forms Authentication in Silverlight Application.
- Making GridView Rows or Individual Cells Clickable and Selectable.
- Enabling browser back button for GridView Paging and Sorting in Ajax 1.1 and 3.5 (using Visual Studio 2005/ Visual studio 2008)
- How to pass values from User Control to Page or calling Page methods from User Control.
- What is WCF?
- New features in C# 4.0
- C# to VB.NET and VB.NET to C# online free converter tools.


0 comments:
Post a Comment
Post your comments/questions/feedback for this Article.