Class DBSequenceConfiguration
Sequence configuration from the database, should not be used outside of NumberSequenceCounter
Inheritance
System.Object
DBSequenceConfiguration
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.Framework.Core
Assembly: Simplic.Framework.Base.dll
Syntax
public class DBSequenceConfiguration
Properties
| Improve this Doc View Sourcecycle
Start from beginning
Declaration
public bool cycle { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
increment_by
Step size
Declaration
public int increment_by { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
max_value
Max value
Declaration
public long max_value { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
min_value
Minimum value
Declaration
public long min_value { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
start_with
start value
Declaration
public long start_with { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |