Reputation: 67283
Given a query similar to the following:
var results = from x in context.Table
orderby x.SortOrder
group x by x.GroupColumn into g
select g;
Is there any guarantee that items within each group will also be sorted by SortOrder
?
Upvotes: 1
Views: 68