Class MigrationProcessorFactory
Inheritance
MigrationProcessorFactory
Assembly: FluentMigrator.Runner.Core.dll
Syntax
[Obsolete]
public abstract class MigrationProcessorFactory : IMigrationProcessorFactory
Properties
|
Edit this page
View Source
Name
Declaration
public virtual string Name { get; }
Property Value
Methods
|
Edit this page
View Source
Create(string, IAnnouncer, IMigrationProcessorOptions)
Declaration
[Obsolete]
public abstract IMigrationProcessor Create(string connectionString, IAnnouncer announcer, IMigrationProcessorOptions options)
Parameters
Returns
|
Edit this page
View Source
IsForProvider(string)
Returns a value indicating whether this processor factory can use the given DB provider
Declaration
[Obsolete]
public virtual bool IsForProvider(string provider)
Parameters
Type |
Name |
Description |
string |
provider |
The DB provider name
|
Returns
Type |
Description |
bool |
true when this processor factory can use the given DB provider
|
Implements