System.Data.ForeignKeyConstraint.ForeignKeyConstraint C# (CSharp) Метод

ForeignKeyConstraint() приватный Метод

private ForeignKeyConstraint ( string constraintName, string parentTableName, string parentColumnNames, string childColumnNames, AcceptRejectRule acceptRejectRule, Rule deleteRule, Rule updateRule ) : System.ComponentModel
constraintName string
parentTableName string
parentColumnNames string
childColumnNames string
acceptRejectRule AcceptRejectRule
deleteRule Rule
updateRule Rule
Результат System.ComponentModel
        public ForeignKeyConstraint(string constraintName, string parentTableName, string[] parentColumnNames, string[] childColumnNames,
                                    AcceptRejectRule acceptRejectRule, Rule deleteRule, Rule updateRule)
        {
            _constraintName = constraintName;
            _parentColumnNames = parentColumnNames;
            _childColumnNames = childColumnNames;
            _parentTableName = parentTableName;
            _acceptRejectRule = acceptRejectRule;
            _deleteRule = deleteRule;
            _updateRule = updateRule;
        }

Same methods

ForeignKeyConstraint::ForeignKeyConstraint ( DataColumn parentColumn, DataColumn childColumn ) : System.ComponentModel
ForeignKeyConstraint::ForeignKeyConstraint ( string constraintName, DataColumn parentColumn, DataColumn childColumn ) : System.ComponentModel
ForeignKeyConstraint::ForeignKeyConstraint ( string constraintName, string parentTableName, string parentTableNamespace, string parentColumnNames, string childColumnNames, AcceptRejectRule acceptRejectRule, Rule deleteRule, Rule updateRule ) : System.ComponentModel