July 2015
Intermediate to advanced
1300 pages
87h 27m
English
The DataServiceContext class is responsible for tracking entities and changes made to entity instances. Changes are kept in memory until they are persisted to the data store with an explicit invocation to the SaveChanges method. To manipulate data, DataServiceContext exposes methods for executing create/read/update/delete (CRUD) operations. Specifically, it exposes the following methods:
AddObject adds an instance of a business object into the data model through the OData service. It invokes the POST HTTP method.
DeleteObject ...