Search Results for

    Show / Hide Table of Contents

    Class ConnectionlessProcessor

    Inheritance
    object
    ConnectionlessProcessor
    Implements
    IMigrationProcessor
    IQuerySchema
    IDisposable
    Inherited Members
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    Namespace: FluentMigrator.Runner.Processors
    Assembly: FluentMigrator.Runner.dll
    Syntax
    public class ConnectionlessProcessor : IMigrationProcessor, IQuerySchema, IDisposable

    Constructors

    ConnectionlessProcessor(IMigrationGenerator, IRunnerContext, IMigrationProcessorOptions)

    Declaration
    public ConnectionlessProcessor(IMigrationGenerator generator, IRunnerContext context, IMigrationProcessorOptions options)
    Parameters
    Type Name Description
    IMigrationGenerator generator
    IRunnerContext context
    IMigrationProcessorOptions options

    Properties

    Announcer

    Declaration
    public IAnnouncer Announcer { get; set; }
    Property Value
    Type Description
    IAnnouncer

    ConnectionString

    Declaration
    public string ConnectionString { get; }
    Property Value
    Type Description
    string

    Context

    Declaration
    public IRunnerContext Context { get; set; }
    Property Value
    Type Description
    IRunnerContext

    DatabaseType

    Declaration
    public string DatabaseType { get; }
    Property Value
    Type Description
    string

    DatabaseTypeAliases

    Declaration
    public IList<string> DatabaseTypeAliases { get; }
    Property Value
    Type Description
    IList<string>

    Generator

    Declaration
    public IMigrationGenerator Generator { get; set; }
    Property Value
    Type Description
    IMigrationGenerator

    Options

    Declaration
    public IMigrationProcessorOptions Options { get; set; }
    Property Value
    Type Description
    IMigrationProcessorOptions

    Methods

    BeginTransaction()

    Declaration
    public void BeginTransaction()

    ColumnExists(string, string, string)

    Declaration
    public bool ColumnExists(string schemaName, string tableName, string columnName)
    Parameters
    Type Name Description
    string schemaName
    string tableName
    string columnName
    Returns
    Type Description
    bool

    CommitTransaction()

    Declaration
    public void CommitTransaction()

    ConstraintExists(string, string, string)

    Declaration
    public bool ConstraintExists(string schemaName, string tableName, string constraintName)
    Parameters
    Type Name Description
    string schemaName
    string tableName
    string constraintName
    Returns
    Type Description
    bool

    DefaultValueExists(string, string, string, object)

    Declaration
    public bool DefaultValueExists(string schemaName, string tableName, string columnName, object defaultValue)
    Parameters
    Type Name Description
    string schemaName
    string tableName
    string columnName
    object defaultValue
    Returns
    Type Description
    bool

    Dispose()

    Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

    Declaration
    public void Dispose()

    Execute(string, params object[])

    Declaration
    public void Execute(string template, params object[] args)
    Parameters
    Type Name Description
    string template
    object[] args

    Exists(string, params object[])

    Declaration
    public bool Exists(string template, params object[] args)
    Parameters
    Type Name Description
    string template
    object[] args
    Returns
    Type Description
    bool

    IndexExists(string, string, string)

    Declaration
    public bool IndexExists(string schemaName, string tableName, string indexName)
    Parameters
    Type Name Description
    string schemaName
    string tableName
    string indexName
    Returns
    Type Description
    bool

    Process(AlterColumnExpression)

    Declaration
    public void Process(AlterColumnExpression expression)
    Parameters
    Type Name Description
    AlterColumnExpression expression

    Process(AlterDefaultConstraintExpression)

    Declaration
    public void Process(AlterDefaultConstraintExpression expression)
    Parameters
    Type Name Description
    AlterDefaultConstraintExpression expression

    Process(AlterSchemaExpression)

    Declaration
    public void Process(AlterSchemaExpression expression)
    Parameters
    Type Name Description
    AlterSchemaExpression expression

    Process(AlterTableExpression)

    Declaration
    public void Process(AlterTableExpression expression)
    Parameters
    Type Name Description
    AlterTableExpression expression

    Process(CreateColumnExpression)

    Declaration
    public void Process(CreateColumnExpression expression)
    Parameters
    Type Name Description
    CreateColumnExpression expression

    Process(CreateConstraintExpression)

    Declaration
    public void Process(CreateConstraintExpression expression)
    Parameters
    Type Name Description
    CreateConstraintExpression expression

    Process(CreateForeignKeyExpression)

    Declaration
    public void Process(CreateForeignKeyExpression expression)
    Parameters
    Type Name Description
    CreateForeignKeyExpression expression

    Process(CreateIndexExpression)

    Declaration
    public void Process(CreateIndexExpression expression)
    Parameters
    Type Name Description
    CreateIndexExpression expression

    Process(CreateSchemaExpression)

    Declaration
    public void Process(CreateSchemaExpression expression)
    Parameters
    Type Name Description
    CreateSchemaExpression expression

    Process(CreateSequenceExpression)

    Declaration
    public void Process(CreateSequenceExpression expression)
    Parameters
    Type Name Description
    CreateSequenceExpression expression

    Process(CreateTableExpression)

    Declaration
    public void Process(CreateTableExpression expression)
    Parameters
    Type Name Description
    CreateTableExpression expression

    Process(DeleteColumnExpression)

    Declaration
    public void Process(DeleteColumnExpression expression)
    Parameters
    Type Name Description
    DeleteColumnExpression expression

    Process(DeleteConstraintExpression)

    Declaration
    public void Process(DeleteConstraintExpression expression)
    Parameters
    Type Name Description
    DeleteConstraintExpression expression

    Process(DeleteDataExpression)

    Declaration
    public void Process(DeleteDataExpression expression)
    Parameters
    Type Name Description
    DeleteDataExpression expression

    Process(DeleteDefaultConstraintExpression)

    Declaration
    public void Process(DeleteDefaultConstraintExpression expression)
    Parameters
    Type Name Description
    DeleteDefaultConstraintExpression expression

    Process(DeleteForeignKeyExpression)

    Declaration
    public void Process(DeleteForeignKeyExpression expression)
    Parameters
    Type Name Description
    DeleteForeignKeyExpression expression

    Process(DeleteIndexExpression)

    Declaration
    public void Process(DeleteIndexExpression expression)
    Parameters
    Type Name Description
    DeleteIndexExpression expression

    Process(DeleteSchemaExpression)

    Declaration
    public void Process(DeleteSchemaExpression expression)
    Parameters
    Type Name Description
    DeleteSchemaExpression expression

    Process(DeleteSequenceExpression)

    Declaration
    public void Process(DeleteSequenceExpression expression)
    Parameters
    Type Name Description
    DeleteSequenceExpression expression

    Process(DeleteTableExpression)

    Declaration
    public void Process(DeleteTableExpression expression)
    Parameters
    Type Name Description
    DeleteTableExpression expression

    Process(InsertDataExpression)

    Declaration
    public void Process(InsertDataExpression expression)
    Parameters
    Type Name Description
    InsertDataExpression expression

    Process(PerformDBOperationExpression)

    Declaration
    public void Process(PerformDBOperationExpression expression)
    Parameters
    Type Name Description
    PerformDBOperationExpression expression

    Process(RenameColumnExpression)

    Declaration
    public void Process(RenameColumnExpression expression)
    Parameters
    Type Name Description
    RenameColumnExpression expression

    Process(RenameTableExpression)

    Declaration
    public void Process(RenameTableExpression expression)
    Parameters
    Type Name Description
    RenameTableExpression expression

    Process(UpdateDataExpression)

    Declaration
    public void Process(UpdateDataExpression expression)
    Parameters
    Type Name Description
    UpdateDataExpression expression

    Process(string)

    Declaration
    protected void Process(string sql)
    Parameters
    Type Name Description
    string sql

    Read(string, params object[])

    Declaration
    public DataSet Read(string template, params object[] args)
    Parameters
    Type Name Description
    string template
    object[] args
    Returns
    Type Description
    DataSet

    ReadTableData(string, string)

    Declaration
    public DataSet ReadTableData(string schemaName, string tableName)
    Parameters
    Type Name Description
    string schemaName
    string tableName
    Returns
    Type Description
    DataSet

    RollbackTransaction()

    Declaration
    public void RollbackTransaction()

    SchemaExists(string)

    Declaration
    public bool SchemaExists(string schemaName)
    Parameters
    Type Name Description
    string schemaName
    Returns
    Type Description
    bool

    SequenceExists(string, string)

    Declaration
    public bool SequenceExists(string schemaName, string sequenceName)
    Parameters
    Type Name Description
    string schemaName
    string sequenceName
    Returns
    Type Description
    bool

    TableExists(string, string)

    Declaration
    public bool TableExists(string schemaName, string tableName)
    Parameters
    Type Name Description
    string schemaName
    string tableName
    Returns
    Type Description
    bool

    Implements

    IMigrationProcessor
    IQuerySchema
    IDisposable
    In this article
    Back to top
    Copyright © 2018 Fluent Migrator Project
    Generated by DocFX
    Creative Commons License
    FluentMigrator Documentation by FluentMigrator Project is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.