S
Sam Shrefler
I have two List<Order> and List<OrderDetails>
Order looks like this:
{
int orderID
List<OrderDetails> details
orderTotal
orderDate
...
}
I have a List that contains ALL OrderDetails and looks like this:
{
int orderID
Details details
...
}
What I'm looking to do process the second list so that i copy each
corresponding OrderDetail into the parent Order details.
What would be the best way to go about this?
Thanks
Sam
Order looks like this:
{
int orderID
List<OrderDetails> details
orderTotal
orderDate
...
}
I have a List that contains ALL OrderDetails and looks like this:
{
int orderID
Details details
...
}
What I'm looking to do process the second list so that i copy each
corresponding OrderDetail into the parent Order details.
What would be the best way to go about this?
Thanks
Sam