Returns true if the object has been locally modified

Namespace: BrightstarDB.EntityFramework
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
bool IsModified { get; }
Visual Basic
ReadOnly Property IsModified As Boolean
	Get
Visual C++
property bool IsModified {
	bool get ();
}
F#
abstract IsModified : bool with get

Property Value

Type: Boolean

Remarks

This flag is not set if a property marked with the InversePropertyAttribute is modified as changing this property does not actually modify the underlying RDF resource. In such cases, the value that is added to / removed from the property will be marked as modified instead.

See Also