Models the action to be executed when a foreign key has a configuration miss.
Initializes a new instance of MissActionForForeignKey.
public Void MissActionForForeignKey(action, desired, actual)
Name | Type | Summary |
---|---|---|
action | MissActionType | Action to be performed to fix the problem. |
desired | ForeignKey | Desired foreign key configuration. |
actual | ForeignKey | Actual foreign key configuration. |
Action to be performed to fix the problem.
public MissActionType Action { get; }
Actual foreign key configuration.
public ForeignKey Actual { get; }
Desired foreign key configuration.
public ForeignKey Desired { get; }
In this document