I have an application that uses one-to-many relationshipped objects like oreder-orderDetails, vith EntityFramework.
I want to use a view, that make it possible to add a new order with some orderDetails objects.
I can create a strongly typed view, that returns an order object wich has a List orderDetails property, but can't populate the orderDetails.
Has anybody a solution, how to do that?
Thanks in advance
Gabriel