BCSQueryGetValues Method (IEnumerableString, IEnumerableObject, IEnumerableString, Boolean, IEnumerableString) |
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,
IEnumerable<string> outColumns,
bool distinct,
IEnumerable<string> orderByColumns
)
Public Function GetValues (
matchColumns As IEnumerable(Of String),
matchValues As IEnumerable(Of Object),
outColumns As IEnumerable(Of String),
distinct As Boolean,
orderByColumns As IEnumerable(Of 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.
- outColumns
- Type: System.Collections.GenericIEnumerableString
The collection of column names for which to return values.
- distinct
- Type: SystemBoolean
A value indicating whether to return only distinct values.
- orderByColumns
- Type: System.Collections.GenericIEnumerableString
The collection of column names that specifies the sorting order of returned 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