4 writes to table
System.Data (4)
fx\src\data\System\Data\DataView.cs (4)
111
this.
table
= table;
143
this.
table
= table;
179
this.
table
= table;
561
table
= value;
50 references to table
System.Data (50)
fx\src\data\System\Data\DataView.cs (50)
112
dvListener.RegisterMetaDataEvents(this.
table
);
144
dvListener.RegisterMetaDataEvents(this.
table
);
180
dvListener.RegisterMetaDataEvents(this.
table
);
369
CultureInfo locale = (
table
!= null ?
table
.Locale : CultureInfo.CurrentCulture);
371
DataExpression newFilter = new DataExpression(
table
, value);
459
if (sort.Length == 0 && applyDefaultSort &&
table
!= null &&
table
._primaryIndex.Length > 0) {
460
return
table
.FormatSortString(
table
._primaryIndex);
477
CultureInfo locale = (
table
!= null ?
table
.Locale : CultureInfo.CurrentCulture);
541
return
table
;
559
if (
table
!= value) {
562
if (
table
!= null) {
563
dvListener.RegisterMetaDataEvents(this.
table
);
568
if (
table
!= null) {
569
OnListChanged(new ListChangedEventArgs(ListChangedType.PropertyDescriptorChanged, new DataTablePropertyDescriptor(
table
)));
619
addNewRow =
table
.NewRow();
669
if (
table
== null)
673
table
.ParseSortString(sort);
845
table
.Rows.Add(newRow);
974
findIndex =
table
.GetIndex(column, recordStates, GetFilter());
1024
if (
table
!= null && index != null && index.IndexFields.Length == 1) {
1092
findIndex =
table
.GetIndex(property.Name, recordStates, GetFilter());
1142
if (!this.
table
.Columns.Contains(property.Name)) { // just check if column does not exist, we will handle duplicate column in Sort
1188
if (
table
!= null && index != null && index.IndexFields.Length > 0) {
1217
if(
table
!= null) {
1219
return
table
.TableName;
1222
DataSet dataSet =
table
.DataSet;
1224
DataTable foundTable = dataSet.FindTable(
table
, listAccessors, 0);
1235
if (
table
!= null) {
1237
return
table
.GetPropertyDescriptorCollection(null);
1240
DataSet dataSet =
table
.DataSet;
1243
DataTable foundTable = dataSet.FindTable(
table
, listAccessors, 0);
1282
return
table
.recordManager[GetRecord(index)];
1286
return GetRowView(
table
.recordManager[record]);
1465
dvListener.RegisterMetaDataEvents(this.
table
);
1486
DataRow row =
table
.recordManager[iterator.Current];
1503
if (this.
table
== null)
1512
DataViewSetting dataViewSetting = dataViewManager.DataViewSettings[
table
];
1516
DataExpression newFilter = new DataExpression(
table
, dataViewSetting.RowFilter);
1587
if (
table
!= null) {
1591
newIndex = new Index(
table
, SortComparison, ((DataViewRowState)(int)recordStates), GetFilter());
1599
newIndex =
table
.GetIndex(Sort, ((DataViewRowState)(int)recordStates), GetFilter());
1687
dt.Locale = this.
table
.Locale;
1688
dt.CaseSensitive = this.
table
.CaseSensitive;
1689
dt.TableName = ((null != tableName) ? tableName : this.
table
.TableName);
1690
dt.Namespace = this.
table
.Namespace;
1691
dt.Prefix = this.
table
.Prefix;