Class DbMetaSequence
Represents metadata for a database sequence or generator.
public class DbMetaSequence : DbMetaObject
- Inheritance
-
DbMetaSequence
- Inherited Members
- Extension Methods
Properties
CurrentValue
Gets or sets the current numeric value of the sequence.
public long CurrentValue { get; set; }
Property Value
IncrementBy
Gets or sets the step interval increment value of the sequence.
public long IncrementBy { get; set; }
Property Value
InitialValue
Gets or sets the initial or seed value of the sequence.
public long InitialValue { get; set; }