c# Programming Glossary: query2
LINQ Query - Explanation needed of why these examples are different http://stackoverflow.com/questions/389767/linq-query-explanation-needed-of-why-these-examples-are-different by step for me so that it makes sense... IEnumerable char query2 Not what you might expect foreach char vowel in aeiou var t.. you might expect foreach char vowel in aeiou var t vowel query2 query2.Where c c t iterate through query and output snipped.. expect foreach char vowel in aeiou var t vowel query2 query2.Where c c t iterate through query and output snipped for brevity..
When is ObjectQuery really an IOrderedQueryable? http://stackoverflow.com/questions/9025137/when-is-objectquery-really-an-iorderedqueryable var b query is IOrderedQueryable Plot True But still var query2 query.ThenBy p p.Number Does not compile. 'IQueryable Plot '.. and no extension method 'ThenBy' .... When I do var query2 IOrderedQueryable Plot query .ThenBy p p.Number It compiles..
|