Compare a column in one table to a column in another table

Namespace: Wiker.WIDatabase
Assembly: 

Syntax

C#
public CCondition(
	string tableA,
	string columnA,
	eOperator conditionOperator,
	string tableB,
	string columnB
)
Visual Basic
Public Sub New ( _
	tableA As String, _
	columnA As String, _
	conditionOperator As eOperator, _
	tableB As String, _
	columnB As String _
)
Visual C++
public:
CCondition(
	String^ tableA, 
	String^ columnA, 
	eOperator conditionOperator, 
	String^ tableB, 
	String^ columnB
)

Parameters

tableA
Type: System..::..String
First Table to compare with
columnA
Type: System..::..String
Column in first table to compare with
conditionOperator
Type: Wiker.WIDatabase..::..eOperator
Type of comparision
tableB
Type: System..::..String
Second Table to compare to
columnB
Type: System..::..String
Column in second table to compare to

Return Value

CCondition

See Also