0
votes
1answer
93 views
How do you sort a parent and child collection using Linq?
Hi all,
I have the following basic classes (cut down for this question):
public class Parent
{
public string Name { get; set; }
public IList<Child> Children { …
