Class DefaultConventionSet
Inheritance
DefaultConventionSet
Assembly: FluentMigrator.Runner.dll
Syntax
public class DefaultConventionSet : IConventionSet
Constructors
|
Edit this page
View Source
DefaultConventionSet()
Declaration
public DefaultConventionSet()
|
Edit this page
View Source
DefaultConventionSet(IRunnerContext)
Declaration
[Obsolete]
public DefaultConventionSet(IRunnerContext runnerContext)
Parameters
|
Edit this page
View Source
DefaultConventionSet(string, string)
Declaration
public DefaultConventionSet(string defaultSchemaName, string workingDirectory)
Parameters
Type |
Name |
Description |
string |
defaultSchemaName |
|
string |
workingDirectory |
|
Properties
|
Edit this page
View Source
AutoNameConventions
Declaration
public IList<IAutoNameConvention> AutoNameConventions { get; }
Property Value
|
Edit this page
View Source
ColumnsConventions
Declaration
public IList<IColumnsConvention> ColumnsConventions { get; }
Property Value
|
Edit this page
View Source
ConstraintConventions
Declaration
public IList<IConstraintConvention> ConstraintConventions { get; }
Property Value
|
Edit this page
View Source
ForeignKeyConventions
Declaration
public IList<IForeignKeyConvention> ForeignKeyConventions { get; }
Property Value
|
Edit this page
View Source
IndexConventions
Declaration
public IList<IIndexConvention> IndexConventions { get; }
Property Value
|
Edit this page
View Source
RootPathConvention
Declaration
public IRootPathConvention RootPathConvention { get; }
Property Value
|
Edit this page
View Source
SchemaConvention
Gets the default schema name convention to be applied to ISchemaExpression implementations
Declaration
public DefaultSchemaConvention SchemaConvention { get; }
Property Value
|
Edit this page
View Source
SequenceConventions
Declaration
public IList<ISequenceConvention> SequenceConventions { get; }
Property Value
Implements