1 write to _dataView
System.Data.Common (1)
System\Data\DataRowView.cs (1)
19
_dataView
= dataView;
16 references to _dataView
System.Data.Common (16)
System\Data\DataRowView.cs (16)
43
public DataView DataView =>
_dataView
;
58
if (!
_dataView
.AllowEdit && !IsNew)
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];
95
if (!
_dataView
.AllowEdit && !IsNew)
116
private DataRowVersion RowVersionDefault => Row.GetDefaultRowVersion(
_dataView
.RowStateFilter);
192
_dataView
.FinishAddNew(false);
205
_dataView
.FinishAddNew(true);
214
public bool IsNew => (_row ==
_dataView
._addNewRow);
220
public void Delete() =>
_dataView
.Delete(Row);
258
(
_dataView
.Table != null ?
_dataView
.Table.GetPropertyDescriptorCollection() : s_zeroPropertyDescriptorCollection);