JoinRelationship
Represents a single join relationship between two tables (for one-to-many relationships)
public sealed record JoinRelationship : IEquatable<JoinRelationship>
Constructors
JoinRelationship
public JoinRelationship(string LeftTable, string RightTable, string Condition, string JoinType = "INNER")
Represents a single join relationship between two tables (for one-to-many relationships)
| Parameter | Type | Description |
|---|---|---|
LeftTable |
String |
|
RightTable |
String |
|
Condition |
String |
|
JoinType |
String |
Properties
LeftTable
public string LeftTable { get; init; }
RightTable
public string RightTable { get; init; }
Condition
public string Condition { get; init; }
JoinType
public string JoinType { get; init; }