IDataSourceFieldSchema.Identity 属性

定义

获取一个值,该值指示字段值是否随每个新增行自动递增。

public:
 property bool Identity { bool get(); };
public bool Identity { get; }
member this.Identity : bool
Public ReadOnly Property Identity As Boolean

属性值

Boolean

如果字段的 DataType 为 numeric 并且基础字段随新增行自动递增,则为 true;否则为 false

注解

对于 DataColumn 对象, Identity 属性对应于 AutoIncrement 属性。 在SQL Server中,Identity 列是一个数值列,它随每个添加的记录自动递增,从而确保该值唯一标识该记录。

适用于

另请参阅