C# , newest version, 2.0
I have a collection of Orders for each person.
person.OrdersCollection;
This is in memory now. I now need to get the Order where the Order.IsDone == true
I'd rather not go back to the DB with a predicate.
Is there a way to do that without looping through the OrdersCollection?
Ian