Deep Dive into LINQ: Mastering Queries for Large Datasets
Explore the world of LINQ, from LINQ Language to Query Operators; understand IQueryable vs. IEnumerable, and learn to query over millions of objects effectively using LINQ to SQL and more. Discover the true meaning and power behind LINQ queries.
Deep Dive into LINQ: Mastering Queries for Large Datasets
E N D
Presentation Transcript
dive into linq ivantowlson mindscape
“queries should just ‘be there,’like for loops”andershejlsberg
IEnumerable<T> x; what is the meaning ofx.Select(…)? IQueryable<T> x;
IEnumerable<T> x;Enumerable.Select(x, …) what is the meaning ofx.Select(…)? IQueryable<T> x;Queryable.Select(x, …)
i am interested in…a mouse downfollowed by mouse movesuntil i get a mouse up
“queries should just ‘be there,’like for loops”andershejlsberg
thanks! ivan@mindscape.co.nz www.mindscape.co.nz ivan@hestia.cc hestia.typepad.com/flatlander