Gets the original field value before it was changed.

Namespace:  Mindscape.LightSpeed
Assembly:  Mindscape.LightSpeed (in Mindscape.LightSpeed.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
public Object OriginalValue { get; }
Visual Basic (Declaration)
Public ReadOnly Property OriginalValue As Object

Remarks

The ChangeTracker.Changes collection represents accumulated changes since the entity was last saved. For ChangedValue objects in this collection, the OriginalValue will therefore be the value at the time the entity was last saved. A ChangeTrackedEventArgs represents the tracking of an individual change. In this case, the OriginalValue will be the value before the change, which may be different from the value at last save if a property is changed multiple times.

See Also