I have two tables with relation:
modelBuilder.Entity<User>()
.HasOptional(u => u.Subscription)
.WithMany();
how can I remove relation? I want remove Subscription but leave all users. If I remove subscription EF throw exception:
"The DELETE statement conflicted with the REFERENCE constraint
\"FK_Users_Subscriptions_Subscription_Id\".
The conflict occurred in database \"db\",table \"dbo.Users\",
column 'Subscription_Id'.\r\nThe statement has been terminated.
And I want have access from user to subscription.