Click or drag to resize
BCSTableDeleteValues Method (IEnumerableString, IEnumerableObject)
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.19.0)
Syntax
public void DeleteValues(
	IEnumerable<string> matchColumns,
	IEnumerable<Object> matchValues
)

Parameters

matchColumns
Type: System.Collections.GenericIEnumerableString
The collection of column names of which to search the values for a match.
matchValues
Type: System.Collections.GenericIEnumerableObject
The collection of field values to match. The collection size must be the same as the matchColumns collection size.
Remarks
Executes a query like: DELETE FROM TableName[ WHERE (MatchColumns = MatchValues[ AND ...])]
See Also