Class RunnerContext
Inheritance
RunnerContext
Assembly: FluentMigrator.Runner.dll
Syntax
public class RunnerContext : object, IRunnerContext
Constructors
|
Improve this Doc
View Source
RunnerContext(IAnnouncer)
Declaration
public RunnerContext(IAnnouncer announcer)
Parameters
Properties
|
Improve this Doc
View Source
AllowBreakingChange
Gets or sets a value indicating whether the migration runner is allowed to apply breaking changes
Declaration
public bool AllowBreakingChange { get; set; }
Property Value
|
Improve this Doc
View Source
Announcer
Declaration
public IAnnouncer Announcer { get; }
Property Value
|
Improve this Doc
View Source
ApplicationContext
Gets or sets the arbitrary application context passed to the task runner
Declaration
public object ApplicationContext { get; set; }
Property Value
|
Improve this Doc
View Source
Connection
Declaration
public string Connection { get; set; }
Property Value
|
Improve this Doc
View Source
ConnectionStringConfigPath
Declaration
public string ConnectionStringConfigPath { get; set; }
Property Value
|
Improve this Doc
View Source
Database
Declaration
public string Database { get; set; }
Property Value
|
Improve this Doc
View Source
DefaultSchemaName
Gets or sets the default schema name
Declaration
public string DefaultSchemaName { get; set; }
Property Value
|
Improve this Doc
View Source
Namespace
Declaration
public string Namespace { get; set; }
Property Value
|
Improve this Doc
View Source
NestedNamespaces
Declaration
public bool NestedNamespaces { get; set; }
Property Value
|
Improve this Doc
View Source
NoConnection
Declaration
public bool NoConnection { get; set; }
Property Value
|
Improve this Doc
View Source
PreviewOnly
Declaration
public bool PreviewOnly { get; set; }
Property Value
|
Improve this Doc
View Source
Profile
Declaration
public string Profile { get; set; }
Property Value
|
Improve this Doc
View Source
ProviderSwitches
Declaration
public string ProviderSwitches { get; set; }
Property Value
|
Improve this Doc
View Source
StartVersion
Declaration
public long StartVersion { get; set; }
Property Value
|
Improve this Doc
View Source
Steps
Declaration
public int Steps { get; set; }
Property Value
|
Improve this Doc
View Source
StopWatch
Declaration
public IStopWatch StopWatch { get; }
Property Value
|
Improve this Doc
View Source
Declaration
public bool StripComments { get; set; }
Property Value
|
Improve this Doc
View Source
Tags
Declaration
public IEnumerable<string> Tags { get; set; }
Property Value
Type |
Description |
IEnumerable<String> |
|
|
Improve this Doc
View Source
Targets
Declaration
public string[] Targets { get; set; }
Property Value
|
Improve this Doc
View Source
Task
Declaration
public string Task { get; set; }
Property Value
|
Improve this Doc
View Source
Timeout
Declaration
public int? Timeout { get; set; }
Property Value
|
Improve this Doc
View Source
TransactionPerSession
Declaration
public bool TransactionPerSession { get; set; }
Property Value
|
Improve this Doc
View Source
Version
Declaration
public long Version { get; set; }
Property Value
|
Improve this Doc
View Source
WorkingDirectory
Declaration
public string WorkingDirectory { get; set; }
Property Value
Implements