Hi All,
Here is what I have:
Object A --> Collection of Object B's
If I call:
ObjectA.BCollection.Remove(0)
ObjectA.BCollection.Remove(1)
Adapter.Save(ObjectA)
What's the best way to get the adapter to delete the removed item? Do I have to manually call the delete method from the Adapter? is there a way to flag an item for deletion when it is removed from a entity collection?
Thanks.