Returns the values of the search result.
Namespace: BlueCieloECM.InnoCielo.Meridian.ScriptingAssembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)
Syntax
C# |
---|
public Array GetValues( IEnumerable<string> matchColumns, IEnumerable<Object> matchValues, string outColumn ) |
Visual Basic |
---|
Public Function GetValues ( _ matchColumns As IEnumerable(Of String), _ matchValues As IEnumerable(Of Object), _ outColumn As String _ ) As Array |
Visual C++ |
---|
public: Array^ GetValues( IEnumerable<String^>^ matchColumns, IEnumerable<Object^>^ matchValues, String^ outColumn ) |
Parameters
- matchColumns
- Type: System.Collections.Generic..::..IEnumerable<(Of <(<'String>)>)>
The collection of column names for which values will be searched for a match.
- matchValues
- Type: System.Collections.Generic..::..IEnumerable<(Of <(<'Object>)>)>
The collection of field values to match. The collection size must be the same as the matchColumns collection size.
- outColumn
- Type: System..::..String
The column name for which to return the values.
Return Value
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 ...])]