Constructor DbJoinClause
| Improve this Doc View SourceDbJoinClause(DbJoinKind, DbFromClause, DbFromClause, IReadOnlyList<ColumnMapping>)
Initializes a new instance of DbJoinClause class.
Declaration
public DbJoinClause(DbJoinKind kind, DbFromClause left, DbFromClause right, IReadOnlyList<ColumnMapping> on)
Parameters
Type | Name | Description |
---|---|---|
DbJoinKind | kind | The operation of SQL JOIN. |
DbFromClause | left | The left operand. |
DbFromClause | right | The right operand. |
System.Collections.Generic.IReadOnlyList<ColumnMapping> | on | The SQL JOIN column mappings. |