DataSetFieldSchema.Identity Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value indicating whether the value of the data field automatically increments for each new row added to the table or view.
public:
property bool Identity { bool get(); };
public bool Identity { get; }
member this.Identity : bool
Public ReadOnly Property Identity As Boolean
Property Value
true
if the DataType is numeric and the value of the column increments automatically as new rows are added to the DataTable; otherwise, false
.
Implements
Remarks
The Identity property corresponds to the AutoIncrement property of a DataColumn.