Class SequenceDefinition
Inheritance
SequenceDefinition
Assembly: FluentMigrator.Abstractions.dll
Syntax
public class SequenceDefinition : ICloneable, ICanBeValidated
Properties
Cache
Declaration
public virtual long? Cache { get; set; }
Property Value
Cycle
Declaration
public virtual bool Cycle { get; set; }
Property Value
Increment
Declaration
public virtual long? Increment { get; set; }
Property Value
MaxValue
Declaration
public virtual long? MaxValue { get; set; }
Property Value
MinValue
Declaration
public virtual long? MinValue { get; set; }
Property Value
Name
Declaration
public virtual string Name { get; set; }
Property Value
SchemaName
Declaration
public virtual string SchemaName { get; set; }
Property Value
StartWith
Declaration
public virtual long? StartWith { get; set; }
Property Value
Methods
Clone()
Creates a new object that is a copy of the current instance.
Declaration
Returns
Type |
Description |
object |
A new object that is a copy of this instance.
|
CollectValidationErrors(ICollection<string>)
Declaration
public void CollectValidationErrors(ICollection<string> errors)
Parameters
Implements