BCSTable.DeleteValues Method (IEnumerable<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)
Syntaxpublic void DeleteValues(
IEnumerable<string> matchColumns,
IEnumerable<Object> matchValues
)
Public Sub DeleteValues (
matchColumns As IEnumerable(Of String),
matchValues As IEnumerable(Of Object)
)
Parameters
- matchColumns
- Type: System.Collections.Generic.IEnumerable<String>
The collection of column names of which to search the values for a match.
- matchValues
- Type: System.Collections.Generic.IEnumerable<Object>
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