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!

link|improve this question

67% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.