12 references to GetKeyValues
System.Data (12)
fx\src\data\System\Data\DataRelation.cs (3)
245object[] values = parentRow.GetKeyValues(parentKey, version); 258object[] values = childRow.GetKeyValues(childKey, version); 272object[] values = childRow.GetKeyValues(childKey, version);
fx\src\data\System\Data\DataRow.cs (1)
885return GetKeyValues(key, version);
fx\src\data\System\Data\ForeignKeyConstraint.cs (7)
240object[] key = row.GetKeyValues(parentKey, row.RowState == DataRowState.Deleted ? DataRowVersion.Original : DataRowVersion.Default ); 266object[] currentKey = row.GetKeyValues(parentKey, DataRowVersion.Current); 288object[] key = row.GetKeyValues(parentKey, DataRowVersion.Default); 344object[] key = row.GetKeyValues(parentKey, row.RowState == DataRowState.Modified ? DataRowVersion.Current : DataRowVersion.Default ); 381object[] currentKey = row.GetKeyValues(parentKey, DataRowVersion.Current); 403object[] proposedKey = row.GetKeyValues(parentKey, DataRowVersion.Proposed); 514object[] parentKeyValues = parentRow.GetKeyValues(parentKey, action == DataRowAction.Rollback ? version : DataRowVersion.Default);
fx\src\data\System\Data\RelatedView.cs (1)
61object[] childValues = row.GetKeyValues(childKey, version);