You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
case "RESTRICT":returnReferentialAction.Restrict;
case "CASCADE":returnReferentialAction.Cascade;
case "SET_NULL":returnReferentialAction.SetNull;
case "SET_DEFAULT":returnReferentialAction.SetDefault;
case "NO_ACTION":returnReferentialAction.NoAction;
The text was updated successfully, but these errors were encountered:
Similar to #3620 but a slightly different scenario. Possible overlap with #242
Example usage scenario: SqlServerDatabaseModelFactory.ConvertToReferentialAction()
Would be nice to define simple mapping for enum values from well-known database strings.
The text was updated successfully, but these errors were encountered: