IdentityIncrement Propiedad
Gets or sets the identity increment for an identity column.
Espacio de nombres: Microsoft.SqlServer.Management.Smo
Ensamblado: Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)
Sintaxis
'Declaración
<SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)> _
Public Property IdentityIncrement As Long
Get
Set
'Uso
Dim instance As Column
Dim value As Long
value = instance.IdentityIncrement
instance.IdentityIncrement = value
[SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)]
public long IdentityIncrement { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::ReadOnlyAfterCreation)]
public:
property long long IdentityIncrement {
long long get ();
void set (long long value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)>]
member IdentityIncrement : int64 with get, set
function get IdentityIncrement () : long
function set IdentityIncrement (value : long)
Valor de la propiedad
Tipo: System. . :: . .Int64
An Int32 value that specifies the identity increment.
Notas
The identity increment is the amount that the identity column increases for each new row.
The Identity property must be set to True before setting this property.
Vea también