BCSQueryGetValues Method (IEnumerableString, IEnumerableObject, String) |
Returns the values of the search result.
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 Array GetValues(
IEnumerable<string> matchColumns,
IEnumerable<Object> matchValues,
string outColumn
)
Public Function GetValues (
matchColumns As IEnumerable(Of String),
matchValues As IEnumerable(Of Object),
outColumn As String
) As Array
Parameters
- matchColumns
- Type: System.Collections.GenericIEnumerableString
The collection of column names for which values will be searched 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.
- outColumn
- Type: SystemString
The column name for which to return the values.
Return Value
Type:
Array
A 2D array of values ([column, row]) that represents the search result.
If no results, an empty array.
Remarks
Executes a query like: SELECT outColumns FROM BaseQuery[ WHERE (matchColumns = matchValues[ AND ...])]
See Also