Deveel.Data.Sql.Tables.ConstraintInfo.ForeignKey C# (CSharp) Méthode

ForeignKey() public static méthode

public static ForeignKey ( ObjectName tableName, string columnName, ObjectName refTable, string refColumn ) : ConstraintInfo
tableName ObjectName
columnName string
refTable ObjectName
refColumn string
Résultat ConstraintInfo
        public static ConstraintInfo ForeignKey(ObjectName tableName, string columnName, ObjectName refTable, string refColumn)
        {
            return ForeignKey(tableName, new[] {columnName}, refTable, new[] {refColumn});
        }

Same methods

ConstraintInfo::ForeignKey ( string constraintName, ObjectName tableName, string columnNames, ObjectName refTable, string refColumns ) : ConstraintInfo