Class ForeignKeyConstraint

Inheritance
object
ForeignKeyConstraint
Implements
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: ETLBox.ControlFlow
Assembly: ETLBox.dll
Syntax
    public sealed class ForeignKeyConstraint : Constraint, IConstraint

Constructors

ForeignKeyConstraint()

Declaration
    public ForeignKeyConstraint()

ForeignKeyConstraint(IList<string>, IList<string>, string)

Declaration
    public ForeignKeyConstraint(IList<string> columnNames, IList<string> referenceColumnNames, string referenceTableName)
Parameters
TypeNameDescription
System.Collections.Generic.IList<T><string>columnNames
System.Collections.Generic.IList<T><string>referenceColumnNames
stringreferenceTableName

ForeignKeyConstraint(string, string, string)

Declaration
    public ForeignKeyConstraint(string columnName, string referenceColumnName, string referenceTableName)
Parameters
TypeNameDescription
stringcolumnName
stringreferenceColumnName
stringreferenceTableName

Properties

OnDeleteCascade

Declaration
    public bool OnDeleteCascade { get; set; }
Property Value
TypeDescription
bool

ReferenceColumnNames

Declaration
    public ICollection<string> ReferenceColumnNames { get; set; }
Property Value
TypeDescription
System.Collections.Generic.ICollection<T><string>

ReferenceTableName

Declaration
    public string ReferenceTableName { get; set; }
Property Value
TypeDescription
string

Implements