Click or drag to resize

RowState Class

Contains the change state of the row in regard to the last AcceptChanges()
Inheritance Hierarchy

Namespace:  Aloe.SystemFrameworks.Domain.DataAccess
Assembly:  Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntax
public sealed class RowState : Enum

The RowState type exposes the following members.

Fields
  NameDescription
Public fieldStatic memberAdded
The row has been added after the last AcceptChanges
Public fieldStatic memberDeleted
The row has been deleted after the last AcceptChanges
Public fieldStatic memberDetached
The is row is just created, but is not yet added to the table. Change events are not thrown. Useful for loading, duplicating, etc.
Public fieldStatic memberModified
The row has been modified after the last AcceptChanges
Public fieldStatic memberProtected
The row is unchanged, but it is protected from overwriting with refreshed data.
Public fieldStatic memberUnchanged
The row has not been changed after the last AcceptChanges
Public fieldvalue__
Top
Extension Methods
  NameDescription
Public Extension MethodConvertToObjectState
Converts valid row state to object state.
(Defined by RowStateExtensions.)
Top
See Also