Class AlterColumnExpression
The implementation of interfaces to alter a column
Inherited Members
Namespace: FluentMigrator .Expressions
Assembly: FluentMigrator.Abstractions.dll
Syntax
public class AlterColumnExpression : MigrationExpressionBase, IMigrationExpression, ICanBeValidated, ISchemaExpression, IValidationChildren
Properties
| Edit this page View SourceColumn
Gets or sets the column definition
Declaration
public virtual ColumnDefinition Column { get; set; }
Property Value
Type | Description |
---|---|
Column |
SchemaName
Gets or sets the schema name
Declaration
public virtual string SchemaName { get; set; }
Property Value
Type | Description |
---|---|
string |
TableName
Gets or sets the table name
Declaration
[Required(ErrorMessageResourceType = typeof(ErrorMessages), ErrorMessageResourceName = "TableNameCannotBeNullOrEmpty")]
public virtual string TableName { get; set; }
Property Value
Type | Description |
---|---|
string |
Methods
| Edit this page View SourceExecuteWith(IMigrationProcessor)
Execute the expression with the given processor
Declaration
public override void ExecuteWith(IMigrationProcessor processor)
Parameters
Type | Name | Description |
---|---|---|
IMigration |
processor | The processor to execute the expression with |
Overrides
| Edit this page View SourceToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | A string that represents the current object. |