For example:
_ctx.DataContext.Set<ParentClass>().Include("ChildCollection").OrderBy(...)
Everytime I put a Lambda expression in the OrderBy clause I can't get access to the properties off the ChildCollection property that I want the underlying child collection to be ordered by. I don't want the parent class ordered by any specific column.
How do I achieve this using LINQ/Lambda expression? Seems like it should be really easy!