Table of Contents

Class DbMetaSequence

Namespace
Tripous.Data
Assembly
Tripous.Data.dll

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

long

IncrementBy

Gets or sets the step interval increment value of the sequence.

public long IncrementBy { get; set; }

Property Value

long

InitialValue

Gets or sets the initial or seed value of the sequence.

public long InitialValue { get; set; }

Property Value

long