Models a sequence configuration.
Default constructor
public Void Sequence()
Initializes a new instance of Sequence.
public Void Sequence(schema, name)
Name | Type | Summary |
---|---|---|
schema | String | Schema |
name | String | Name of the sequence. |
Increment step.
public Int64 IncrementBy { get; set; }
Maximum value of the sequence.
public Int64 MaxValue { get; set; }
Sequence name.
public String Name { get; set; }
Schema to which the sequence belongs to.
public String Schema { get; set; }
Value from which the sequence start numerating from.
public Int64 Starts { get; set; }
Returns a textual representation of the Sequence.
public String ToString()
In this document