Click or drag to resize

BCSTable.Delete Method (String, IEnumerable<Object>)

Deletes row(s) from the table.

Namespace:  BlueCieloECM.InnoCielo.Meridian.Scripting
Assembly:  BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.111.0)
Syntax
public void Delete(
	string whereFilter,
	IEnumerable<Object> parameters
)

Parameters

whereFilter
Type: System.String
The search condition for the rows to delete. For example "(X = '1' AND Y = 3.14) OR Z = true".
parameters
Type: System.Collections.Generic.IEnumerable<Object>
The collection of parameters for the query (in the same order they appear in the SQL expression).
Remarks
Executes a query like: DELETE FROM TableName[ WHERE (whereFilter)]
See Also