System.Data.DataRelation.DataRelation C# (CSharp) Méthode

DataRelation() private méthode

private DataRelation ( string relationName, string parentTableName, string parentTableNamespace, string childTableName, string childTableNamespace, string parentColumnNames, string childColumnNames, bool nested ) : System.ComponentModel
relationName string
parentTableName string
parentTableNamespace string
childTableName string
childTableNamespace string
parentColumnNames string
childColumnNames string
nested bool
Résultat System.ComponentModel
        public DataRelation(string relationName, string parentTableName, string parentTableNamespace, string childTableName, string childTableNamespace, string[] parentColumnNames, string[] childColumnNames, bool nested)
        {
            _relationName = relationName;
            _parentColumnNames = parentColumnNames;
            _childColumnNames = childColumnNames;
            _parentTableName = parentTableName;
            _childTableName = childTableName;
            _parentTableNamespace = parentTableNamespace;
            _childTableNamespace = childTableNamespace;
            _nested = nested;
        }

Same methods

DataRelation::DataRelation ( string relationName, DataColumn parentColumn, DataColumn childColumn ) : System.ComponentModel
DataRelation::DataRelation ( string relationName, DataColumn parentColumn, DataColumn childColumn, bool createConstraints ) : System.ComponentModel
DataRelation::DataRelation ( string relationName, string parentTableName, string childTableName, string parentColumnNames, string childColumnNames, bool nested ) : System.ComponentModel