<PackageReference Include="NETStandard.Library" Version="2.0.0" />

System.Data.DataRowView

namespace System.Data { public class DataRowView : ICustomTypeDescriptor, IDataErrorInfo, IEditableObject, INotifyPropertyChanged { public DataView DataView { get; } public bool IsEdit { get; } public bool IsNew { get; } public object this[int ndx] { get; set; } public object this[string property] { get; set; } public DataRow Row { get; } public DataRowVersion RowVersion { get; } string IDataErrorInfo.this[string colName] { get; } public event PropertyChangedEventHandler PropertyChanged; public void BeginEdit(); public void CancelEdit(); public DataView CreateChildView(DataRelation relation); public DataView CreateChildView(DataRelation relation, bool followParent); public DataView CreateChildView(string relationName); public DataView CreateChildView(string relationName, bool followParent); public void Delete(); public void EndEdit(); } }