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