DataServiceContext.DeleteObject(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Changes the state of the specified object to be deleted in the DataServiceContext.
public:
void DeleteObject(System::Object ^ entity);
public void DeleteObject (object entity);
member this.DeleteObject : obj -> unit
Public Sub DeleteObject (entity As Object)
Parameters
- entity
- Object
The tracked entity to be changed to the deleted state.
Exceptions
When entity
is null
.
The object is not being tracked by the DataServiceContext.
Remarks
All links to the specified entity are also marked deleted.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.