Click or drag to resize

IDataApiDelete Method

Delete a Data Object.

Namespace: Casewhere.Runtime.DSL.Api
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.5.0
Syntax
C#
void Delete(
	string id,
	bool notifyChange = true
)

Parameters

id  String
Id of the Data Object to be deleted.
notifyChange  Boolean  (Optional)
Skip the data change notification when updating data.
Example
C#
var dataApi = ctx.Use<IDataApi>();
dataApi.Delete(orderId);
See Also