Class GenericDescriptionGenerator
Base class to generate descriptions for tables/classes
Inheritance
GenericDescriptionGenerator
Assembly: FluentMigrator.Runner.Core.dll
Syntax
public abstract class GenericDescriptionGenerator : IDescriptionGenerator
Methods
|
Edit this page
View Source
GenerateColumnDescription(string, string, string, string)
Declaration
protected abstract string GenerateColumnDescription(string schemaName, string tableName, string columnName, string columnDescription)
Parameters
Returns
|
Edit this page
View Source
GenerateDescriptionStatement(AlterColumnExpression)
Declaration
public virtual string GenerateDescriptionStatement(AlterColumnExpression expression)
Parameters
Returns
|
Edit this page
View Source
GenerateDescriptionStatement(AlterTableExpression)
Declaration
public virtual string GenerateDescriptionStatement(AlterTableExpression expression)
Parameters
Returns
|
Edit this page
View Source
GenerateDescriptionStatement(CreateColumnExpression)
Declaration
public virtual string GenerateDescriptionStatement(CreateColumnExpression expression)
Parameters
Returns
|
Edit this page
View Source
GenerateDescriptionStatements(CreateTableExpression)
Declaration
public virtual IEnumerable<string> GenerateDescriptionStatements(CreateTableExpression expression)
Parameters
Returns
|
Edit this page
View Source
GenerateTableDescription(string, string, string)
Declaration
protected abstract string GenerateTableDescription(string schemaName, string tableName, string tableDescription)
Parameters
Returns
Implements