With RIA services, I have a Contract that has a list of Orders (1 to many relationship). Given a Contract, is there an easy way to load all of its orders? Currently, I am creating a method on the service that takes a ContractKey and returns a query that selects all Orders on that ContractKey, and I pass that query to the Context.Load method. Is there was a built in way to do something like
Context.Load(myContract.Orders);