C# 클래스 Simple.Migrator.Providers.SqlServer.SqlServerTransformationProvider

Migration transformations provider for Microsoft SQL Server.
상속: TransformationProvider
파일 보기 프로젝트 열기: juanplopes/simple

공개 메소드들

메소드 설명
AddColumn ( string table, string sqlColumn ) : void
ColumnExists ( string table, string column ) : bool
ConstraintExists ( string table, string name ) : bool
RemoveColumn ( string table, string column ) : void
RenameColumn ( string tableName, string oldColumnName, string newColumnName ) : void
RenameTable ( string oldName, string newName ) : void
SqlServerTransformationProvider ( Dialect dialect, string invariantProvider, string connectionString ) : System
TableExists ( string table ) : bool

메소드 상세

AddColumn() 공개 메소드

public AddColumn ( string table, string sqlColumn ) : void
table string
sqlColumn string
리턴 void

ColumnExists() 공개 메소드

public ColumnExists ( string table, string column ) : bool
table string
column string
리턴 bool

ConstraintExists() 공개 메소드

public ConstraintExists ( string table, string name ) : bool
table string
name string
리턴 bool

RemoveColumn() 공개 메소드

public RemoveColumn ( string table, string column ) : void
table string
column string
리턴 void

RenameColumn() 공개 메소드

public RenameColumn ( string tableName, string oldColumnName, string newColumnName ) : void
tableName string
oldColumnName string
newColumnName string
리턴 void

RenameTable() 공개 메소드

public RenameTable ( string oldName, string newName ) : void
oldName string
newName string
리턴 void

SqlServerTransformationProvider() 공개 메소드

public SqlServerTransformationProvider ( Dialect dialect, string invariantProvider, string connectionString ) : System
dialect Dialect
invariantProvider string
connectionString string
리턴 System

TableExists() 공개 메소드

public TableExists ( string table ) : bool
table string
리턴 bool