I have a simple Entity Framework. For simplicity's sake I will transform the entity names to Northwind Like.
I have a IEnumerable Of Customer and Item Objects
I am trying to Create Orders which of course is made up (simplistically) of an Item and A Customer.
How can I go about creating and inserting these Orders?
-Hcane