what is the order of this function's execution: var queryResult = names.OrderBy(item => item).Where(

Posted by Phani Kumar PV on Stack Overflow See other posts from Stack Overflow or by Phani Kumar PV
Published on 2010-04-20T03:46:27Z Indexed on 2010/04/20 3:53 UTC
Read the original article Hit count: 375

Filed under:
|
|

what is the order of this function's execution:

var queryResult = names.OrderBy(item => item).Where(it => it.StartsWith("S"))

© Stack Overflow or respective owner

Related posts about linq-to-sql

Related posts about c#