Click or drag to resize
DatabaseDelete Method
Perform a delete query on a table. This is a short cut method that creates and update query and then uses the
query('delete')
, table, where and exec methods of the query.

Namespace:  DataTables
Assembly:  DataTables (in DataTables.dll) Version: 1.6.5.0 (1.6.5.0)
Syntax
C#
public Result Delete(
	string table,
	Dictionary<string, Object> where
)

Parameters

table
Type: SystemString
Table to operate the delete on
where
Type: System.Collections.GenericDictionaryString, Object
Collection of conditions to apply to the delete to

Return Value

Type: Result
Result instance
See Also