i have a bit of an understanding problem:
I'd like to do the following: I have an external API ( with tons of get / set methods, like "getOrder", "getOrderPosition", etc. ) and i want to build my own object context out of it.. similar to DataContext of the EntityFramework...
so for example:
class Order
{
List<OrderPosition> OrderPositions {get; set;
}
in my "client-code" i can now use sth. like:
MyOwnObjectContext.Orders.Add(new Order());
or
var orderPositions = MyOwnObjectContext.Orders.Single(p => p.Id == 1).OrderPositions;
when i now call:
MyOwnObjectContext.SaveChanges();
i will iterate through all the changes an call the corresponding API-method, like "UpdateOrder(order)" or "AddOrderPositionToOrder(pos)", etc.
My problems: Is this possible? Is the object context the right thing to use here? How do i get started?
Thx!