Class SubTableConfig
Represents sub table config from TableConfig.
Inheritance
System.Object
    SubTableConfig
  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: 10.8.0Syntax
public class SubTableConfig
  Constructors
SubTableConfig()
Initializes a new instance of the SubTableConfig class.
Declaration
public SubTableConfig()
  SubTableConfig(String, TableConfig, Relationship)
Initializes a new instance of the SubTableConfig class.
Declaration
public SubTableConfig(string prefix, TableConfig config, Relationship relationship)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | prefix | The prefix.  | 
      
| TableConfig | config | The config.  | 
      
| Relationship | relationship | The relationship.  | 
      
Properties
AdditionalJoinCondition
Gets or sets the additional join condition.
Declaration
public string AdditionalJoinCondition { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | The additional join condition.  | 
      
Prefix
Gets or sets the prefix.
Declaration
public string Prefix { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | The prefix.  | 
      
Relationship
Gets or sets the relationship.
Declaration
public Relationship Relationship { get; set; }
  Property Value
| Type | Description | 
|---|---|
| Relationship | The relationship.  | 
      
TableConfig
Gets or sets the mc table config.
Declaration
public TableConfig TableConfig { get; set; }
  Property Value
| Type | Description | 
|---|---|
| TableConfig | The mc table config.  |