DataSetFieldSchema.Identity Property

Definition

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.

Applies to

See also