Order by with Linq + Include
问题 I have a One-Many relation with two Entities : Order: int OrderId string OrderNumber ... OrderItem: int ItemId int sequence ... Product: int ProductId string ProductName ProductType: int ProductTypeid string Title One Order Has multiple OrderItems , and each OrderItem has One Product and each Product has one ProductType . I want to write a Linq that return all orders with their items , Product , ProductType and items be sorted by sequence field. How can I write a query such as following query