Getting Started with Adobe After Effects - Part 6: Motion Blur
A collection of quick technology learning tips from what people around you learn every day

C# -At runtime Linq queries will be converted into query extension methods such as select(),Join()

Nov 3 2011 3:57AM by Ramireddy   

Recently learned that when we write linq queries will be converted into corrosponding methods at runtime. Eg:

from c in customers
group c by c.Country into g
select new { Country = g.Key, CustCount = g.Count() }

will be converted into

customers.
GroupBy(c => c.Country).
Select(g => new { Country = g.Key, CustCount = g.Count() })
Read More..   [32134 clicks]

Published under: Microsoft .NET Tips ·  ·  ·  · 


Ramireddy
2 · 41% · 12972
5
 
0
Knew
 
 
0
Incorrect
 
0
Interesting
 
0
Forgotten



Submit

Your Comment


Sign Up or Login to post a comment.

"C# -At runtime Linq queries will be converted into query extension methods such as select(),Join() " rated 5 out of 5 by 5 readers
C# -At runtime Linq queries will be converted into query extension methods such as select(),Join() , 5.0 out of 5 based on 5 ratings
    Copyright © Rivera Informatic Private Ltd Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising      [ZULU1097]