Skip to main content

SelectQuery.AddRelation Method

Name Parameters Description
AddRelation(Table, Table, RelationColumnInfo[]) parent, nested, keyColumns Creates a relation between two data tables using an inner join operation.
AddRelation(Table, Table, SqlJoinType, RelationColumnInfo[]) parent, nested, joinType, keyColumns Creates a relation between two data tables. Allows you to specify the join operation type and columns relations that should be used to join the tables.
AddRelation(Table, Table, SqlJoinType, String, String, ConditionType) parent, nested, joinType, parentKeyColumn, nestedKeyColumn, compareOperator Creates a relation between two data tables. Allows you to specify the join operation type, table column names that should be used in the join operation, and the relational operator type that should be used to compare column values.
AddRelation(Table, Table, SqlJoinType, String, String) parent, nested, joinType, parentKeyColumn, nestedKeyColumn
AddRelation(Table, Table, SqlJoinType, String) parent, nested, joinType, keyColumn
AddRelation(Table, Table, JoinType, RelationColumnInfo[]) parent, nested, joinType, keyColumns Obsolete. Creates a relation between two data tables using a specified join operation.
AddRelation(Table, Table, JoinType, String, String, ConditionType) parent, nested, joinType, parentKeyColumn, nestedKeyColumn, compareOperator Obsolete. Creates a relation between two data tables using a specified join operation and logical condition.
AddRelation(Table, Table, JoinType, String, String) parent, nested, joinType, parentKeyColumn, nestedKeyColumn Obsolete. Creates a relation between two data tables using a specified join operation.
AddRelation(Table, Table, JoinType, String) parent, nested, joinType, keyColumn Obsolete. Creates a relation between two data tables using a specified join operation.
AddRelation(Table, Table, String, String, ConditionType) parent, nested, parentKeyColumn, nestedKeyColumn, compareOperator Creates a relation between two data tables using an inner join operation and logical condition.
AddRelation(Table, Table, String, String) parent, nested, parentKeyColumn, nestedKeyColumn Creates a relation between two data tables using an inner join operation.
AddRelation(Table, Table, String) parent, nested, keyColumn Creates a relation between two data tables using an inner join operation.