All Tags »
LINQ
Sorry, but there are no more tags available to filter with.
-
Please look at the LINQ code below. I am trying to do the equivalent in EntitySpaces, specifically line 13:
Code:1 var customerGroup = from c in DContext.Customers
2 orderby c.Country
3 group c by c.Country into g
4 orderby g.Key
5
6 ...
-
We have a blog post that shows an example of this ....
EntitySpaces and LINQ - An Introduction - Part 1