Constructeur IdentityColumnInfo (Int64, Int64, Boolean)
Initializes a new instance of the IdentityColumnInfo class using the specified seed and increment values.
Espace de noms : Microsoft.SqlServer.Management.SqlParser.Metadata
Assembly : Microsoft.SqlServer.Management.SqlParser (en Microsoft.SqlServer.Management.SqlParser.dll)
Syntaxe
'Déclaration
Public Sub New ( _
seed As Long, _
increment As Long, _
notForReplication As Boolean _
)
'Utilisation
Dim seed As Long
Dim increment As Long
Dim notForReplication As Boolean
Dim instance As New IdentityColumnInfo(seed, increment, _
notForReplication)
public IdentityColumnInfo(
long seed,
long increment,
bool notForReplication
)
public:
IdentityColumnInfo(
long long seed,
long long increment,
bool notForReplication
)
new :
seed:int64 *
increment:int64 *
notForReplication:bool -> IdentityColumnInfo
public function IdentityColumnInfo(
seed : long,
increment : long,
notForReplication : boolean
)
Paramètres
- seed
Type : System. . :: . .Int64
The identity seed of the identity column.
- increment
Type : System. . :: . .Int64
The identity increment of the identity column.
- notForReplication
Type : System. . :: . .Boolean
true to indicate that the identity is not for replication; otherwise, false.