私は関係のある2つのテーブルを持っています:
modelBuilder.Entity<User>()
.HasOptional(u => u.Subscription)
.WithMany();
どうすれば関係を削除できますか?サブスクリプションを削除したいのですが、すべてのユーザーを残します。サブスクリプションEFスロー例外を削除すると、次のようになります。
"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.
そして、ユーザーからサブスクリプションへのアクセスが必要です。