Returns the values of the search result.

Namespace: BlueCieloECM.InnoCielo.Meridian.Scripting
Assembly: 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
)
Visual Basic
Public Function GetValues ( _
	matchColumns As IEnumerable(Of String), _
	matchValues As IEnumerable(Of Object) _
) As Array
Visual C++
public:
Array^ GetValues(
	IEnumerable<String^>^ matchColumns, 
	IEnumerable<Object^>^ matchValues
)

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.

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 * FROM BaseQuery WHERE (matchColumns = matchValues[ AND ...])]

See Also