For example I have a list of customers which each have a list of orders. Now, I want to get a list of all customers with unpaid orders (let's say this is status 2). Together with that list of customers, I want to have the list of unpaid orders also.
For example I have this:
from c in mycontext.Customers.Include("Orders")
select c
Where or how do I add the condition to look for Orders with status == 2 and how to include these orders with the list of customers?