1 write to Table
System.Data.Common (1)
System\Data\DataView.cs (1)
583Table = _delayedTable;
22 references to Table
PresentationFramework-SystemData (2)
SystemDataExtension.cs (2)
124DataTable dataTable = (value as DataView)?.Table; 184DataTable table = (drv != null) ? drv.DataView.Table : dr.Table;
System.Data.Common (20)
System\Data\DataRowView.cs (10)
62SetColumnValue(_dataView.Table!.Columns[ndx], value); 77DataColumn? column = _dataView.Table!.Columns[property]; 82else if (_dataView.Table.DataSet != null && _dataView.Table.DataSet.Relations.Contains(property)) 86throw ExceptionBuilder.PropertyNotFound(property, _dataView.Table.TableName); 90DataColumn? column = _dataView.Table!.Columns[property]; 148if (relation == null || relation.ParentKey.Table != DataView.Table) 178CreateChildView(DataView.Table!.ChildRelations[relationName]!, followParent); 258(_dataView.Table != null ? _dataView.Table.GetPropertyDescriptorCollection() : s_zeroPropertyDescriptorCollection);
System\Data\DataView.cs (8)
20[DefaultProperty(nameof(Table))] 1695columnNames = new string[Table!.Columns.Count]; 1698columnNames[i] = Table.Columns[i].ColumnName; 1708DataColumn? dc = Table!.Columns[columnNames[i]]; 1711throw ExceptionBuilder.ColumnNotInTheUnderlyingTable(columnNames[i], Table.TableName); 1714columnIndexes[i] = Table.Columns.IndexOf(dc); 1760Table != view.Table ||
System\Data\RelatedView.cs (2)
27Debug.Assert(Table == _childKey.Table, "Key.Table Must be equal to Current Table"); 37Debug.Assert(Table == _childKey.Table, "Key.Table Must be equal to Current Table");