Pull data from an array attribute. This method is thread-safe.
Schema elements that are equal to the input values will be removed.
Namespace:
Casewhere.Runtime.DSL.Api
Assembly:
Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.1.0
Syntax void Pull(
string id,
string attributeName,
params Object[] data
)
Parameters
- id
- Type: SystemString
The data object id. - attributeName
- Type: SystemString
The attribute name. - data
- Type: SystemObject
The pulled data.
Examples var dataApi = ctx.Use<IDataApi>();
dataApi.Pull(id, "Categories", "item1", "item2");
dataApi.Pull(id, "Categories", new string[]{ "item1", "item2" });
See Also