Method to combine two RowSets

Namespace: ScopeRuntime
Assembly: ScopeRuntime (in ScopeRuntime.exe) Version: 1.0.0.0 (10.2.2.0)

Syntax

C#
public abstract IEnumerable<Row> Combine(
	RowSet left,
	RowSet right,
	Row outputRow,
	string[] args
)
Visual Basic
Public MustOverride Function Combine ( _
	left As RowSet, _
	right As RowSet, _
	outputRow As Row, _
	args As String() _
) As IEnumerable(Of Row)
Visual C++
public:
virtual IEnumerable<Row^>^ Combine(
	RowSet^ left, 
	RowSet^ right, 
	Row^ outputRow, 
	array<String^>^ args
) abstract

Parameters

left
Type: RowSet
Left RowSet
right
Type: RowSet
Right RowSet
outputRow
Type: ScopeRuntime..::..Row
Output row object (i.e. "yield return outputRow"
args
Type: array<String>[]()[][]
Arguments

Return Value

An enumerable (i.e. use "yield return outputRow;"

See Also