複数のテーブルを結合するビューがあります。ビューの列の 1 つをプライマリとして設定して、テーブルのように見せることができます。ビューの結合に含まれるテーブルの 1 つを更新したいのですが、エラーが発生します。View or function 'XXX' is not updatable because the modification affects multiple base tables.
私のアップデートは
Persons P = Personrepository.getPerson(256)
p.Active = 0;
Personrepository.Update(p);
Personrepository.save();
更新後、ビューの結果を再度返します。どうすればこれを行うことができますか?