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

PrimaryKey() public static méthode

public static PrimaryKey ( string constraintName, ObjectName tableName ) : ConstraintInfo
constraintName string
tableName ObjectName
Résultat ConstraintInfo
        public static ConstraintInfo PrimaryKey(string constraintName, ObjectName tableName, params string[] columnNames)
        {
            return new ConstraintInfo(constraintName, ConstraintType.PrimaryKey, tableName, columnNames);
        }

Same methods

ConstraintInfo::PrimaryKey ( ObjectName tableName ) : ConstraintInfo