Returns whether this object has been saved to the database. If a new object is saved (which uses an auto increment field) or an existing object is loaded then this property is automatically set to true by the library.

Namespace: DatabaseObjects
Assembly: DatabaseObjects (in DatabaseObjects.dll) Version: 3.8.1.0

Syntax

C#
protected virtual bool IsSaved { get; set; }
Visual Basic
Protected Overridable Property IsSaved As Boolean
	Get
	Set
Visual C++
protected:
virtual property bool IsSaved {
	bool get ();
	void set (bool value);
}

Implements

IDatabaseObject..::..IsSaved

See Also