C# Class Framework.Migrator.Extensions.TransformationProviderExtension

Extends ITransformationProvider functionality to provide fluent migration interface.
Show file Open project: coreframework/Core-Framework

Public Methods

Method Description
AddTable ( this transformationProvider, String tableName, ActiontableDefinition ) : void

New table definition.

ChangeTable ( this transformationProvider, String tableName, Action tableDefinition ) : void

New table expression.

Method Details

AddTable() public static method

New table definition.
public static AddTable ( this transformationProvider, String tableName, ActiontableDefinition ) : void
transformationProvider this The transformation provider.
tableName String Name of the table.
tableDefinition Action
The table definition expressions.
return void

ChangeTable() public static method

New table expression.
public static ChangeTable ( this transformationProvider, String tableName, Action tableDefinition ) : void
transformationProvider this The transformation provider.
tableName String Name of the table.
tableDefinition Action The table change expressions.
return void