RelationInfo Constructors
Obsolete. Obsolete. Use the corresponding functionality of the SelectQuery class instead.Name | Parameters | Description |
---|---|---|
RelationInfo() | none | Initializes a new instance of the RelationInfo class with the default settings. |
RelationInfo(String, String, RelationColumnInfo) | parentTable, nestedTable, keyColumn | Initializes a new instance of the RelationInfo class with the specified tables and a key column. |
RelationInfo(String, String, JoinType, RelationColumnInfo) | parentTable, nestedTable, joinType, keyColumn | Initializes a new instance of the RelationInfo class with the specified settings. |
RelationInfo(String, String, JoinType, IEnumerable<RelationColumnInfo>) | parentTable, nestedTable, joinType, keyColumns | Initializes a new instance of the RelationInfo class with the specified settings. |
RelationInfo(String, String, JoinType, String, String) | parentTable, nestedTable, joinType, parentKeyColumn, nestedKeyColumn | Initializes a new instance of the RelationInfo class with the specified settings. |
RelationInfo(String, String, JoinType) | parentTable, nestedTable, joinType | Initializes a new instance of the RelationInfo class with the specified tables and join type. |
RelationInfo(String, String, IEnumerable<RelationColumnInfo>) | parentTable, nestedTable, keyColumns | Initializes a new instance of the RelationInfo class with the specified tables and key columns. |
RelationInfo(String, String, String, String) | parentTable, nestedTable, parentKeyColumn, nestedKeyColumn | Initializes a new instance of the RelationInfo class with the specified tables and their key columns. |
RelationInfo(String, String) | parentTable, nestedTable | Initializes a new instance of the RelationInfo class with the specified parent and nested tables. |
See Also