JOIN two tables together with an alias based on a collection of conditions

Namespace: Wiker.WIDatabase
Assembly: 

Syntax

C#
public void Join(
	string joinTable,
	string alias,
	Collection<CCondition> conditions,
	eJoinType joinType
)
Visual Basic
Public Sub Join ( _
	joinTable As String, _
	alias As String, _
	conditions As Collection(Of CCondition), _
	joinType As eJoinType _
)
Visual C++
public:
void Join(
	String^ joinTable, 
	String^ alias, 
	Collection<CCondition^>^ conditions, 
	eJoinType joinType
)

Parameters

joinTable
Type: System..::..String
First table to JOIN
alias
Type: System..::..String
Alias for table name
conditions
Type: System.Collections.ObjectModel..::..Collection<(Of <(<'CCondition>)>)>
Collection of CConditions, Search criteria
joinType
Type: Wiker.WIDatabase..::..eJoinType
Type of JOIN

Return Value

void

Remarks

Defaults to eJoinType.Normal

See Also