Class MigrationRunnerConventions
Inheritance
MigrationRunnerConventions
Assembly: FluentMigrator.Runner.dll
Syntax
public class MigrationRunnerConventions : IMigrationRunnerConventions
Constructors
|
Edit this page
View Source
MigrationRunnerConventions()
Declaration
public MigrationRunnerConventions()
Properties
|
Edit this page
View Source
GetMaintenanceStage
Declaration
public Func<Type, MigrationStage?> GetMaintenanceStage { get; set; }
Property Value
|
Edit this page
View Source
GetMigrationInfo
Declaration
[Obsolete]
public Func<Type, IMigrationInfo> GetMigrationInfo { get; set; }
Property Value
|
Edit this page
View Source
Declaration
public Func<IMigration, IMigrationInfo> GetMigrationInfoForMigration { get; }
Property Value
|
Edit this page
View Source
Declaration
public Func<Type, IEnumerable<string>, bool> TypeHasMatchingTags { get; set; }
Property Value
|
Edit this page
View Source
Declaration
public Func<Type, bool> TypeHasTags { get; set; }
Property Value
|
Edit this page
View Source
TypeIsMigration
Declaration
public Func<Type, bool> TypeIsMigration { get; set; }
Property Value
|
Edit this page
View Source
TypeIsProfile
Declaration
public Func<Type, bool> TypeIsProfile { get; set; }
Property Value
|
Edit this page
View Source
Declaration
public Func<Type, bool> TypeIsVersionTableMetaData { get; set; }
Property Value
Implements