Should return the distinct value that uniquely identifies this object in 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 by the library. Typically, this is the value of an identity or auto increment database field.

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

Syntax

C#
Object DistinctValue { get; set; }
Visual Basic
Property DistinctValue As Object
	Get
	Set
Visual C++
property Object^ DistinctValue {
	Object^ get ();
	void set (Object^ value);
}

See Also