Hopefully this is possible,
If I use Entity.EntityCollection.GetMultiAsDataTable() to get datatable, how can I return a possibly updated datatable to the Entity.EntityCollection?
Example:
' Get Customer
Dim Customer As New CustomerEntity(1)
' Get Orders as datatable
Dim DT As DataTable = Customer.Wave.GetMultiAsDataTable(Nothing, Nothing, Nothing)
' Some code to update the datatable
' Some code to return the altered datatable to the entity
In short, I would like to get a datatable, update it, return datatable to entity, entity properties should now reflect the new values.
Is this possible?
Thanks,