DbColumn.IsIdentity 属性

定义

获取可为 null 的布尔值,该值指示此列是否是标识,或者在未设置任何值时返回 null。 在派生类中重写时,可设置为 truefalse,指示此列是否是标识,也可设置为 null(在 Visual Basic 中为 Nothing)。

public:  property Nullable<bool> IsIdentity {  public:
Nullable<bool> get(); protected:
 void set(Nullable<bool> value); };
public bool? IsIdentity { get; protected set; }
member this.IsIdentity : Nullable<bool> with get, set
Public Property IsIdentity As Nullable(Of Boolean)

属性值

如果此列是标识,将返回 true;否则返回 false。 如果未设置任何值,则返回空引用(在 Visual Basic 中为 Nothing)。

适用于