Models the action to be executed when a column constraint has a configuration miss.
Initializes a new instance of MissActionForColumnConstraint.
public Void MissActionForColumnConstraint(action, column, desired, actual)| Name | Type | Summary |
|---|---|---|
| action | MissActionType | Action to be performed to fix the problem. |
| column | TableColumn | Actual column to which the constraint belongs to. |
| desired | ColumnConstraint | Desired column constraint configuration. |
| actual | ColumnConstraint | Actual column constraint configuration. |
| Type | Summary |
|---|---|
| ArgumentNullException | Thrown when column is null. |
Action to be performed to fix the problem.
public MissActionType Action { get; }Actual column constraint configuration.
public ColumnConstraint Actual { get; }Actual column to which the constraint belongs to.
public TableColumn Column { get; }Desired column constraint configuration.
public ColumnConstraint Desired { get; }In this document