Class JoinedTable
Represents joined table from TableConfig.
Inheritance
System.Object
JoinedTable
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Mediachase.BusinessFoundation.Data.Sql.Management
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 13.30.0Syntax
public class JoinedTable
Constructors
JoinedTable()
Initializes a new instance of the JoinedTable class.
Declaration
public JoinedTable()
JoinedTable(Relationship, JoinedColumn[])
Initializes a new instance of the JoinedTable class.
Declaration
public JoinedTable(Relationship relation, params JoinedColumn[] columns)
Parameters
Type | Name | Description |
---|---|---|
Relationship | relation | The relation. |
JoinedColumn[] | columns | The columns. |
Properties
Columns
Gets the columns.
Declaration
public List<JoinedColumn> Columns { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<JoinedColumn> | The columns. |
JoinCondition
Gets or sets the join condition.
Declaration
public string JoinCondition { get; set; }
Property Value
Type | Description |
---|---|
System.String | The join condition. |
Relation
Gets the relation.
Declaration
public Relationship Relation { get; set; }
Property Value
Type | Description |
---|---|
Relationship | The relation. |