を使用しようとするとupdate-database -verbose -force
、エラーが発生します。
ALTER TABLE DROP COLUMN failed because column 'countReferralsRegistrations' does not exist in table 'UserProfile'.
問題は、モデルとテーブルUserProfileにこの列がない(そして、したくない)ということです。
どうすれば解決できますか?
を使用しようとするとupdate-database -verbose -force
、エラーが発生します。
ALTER TABLE DROP COLUMN failed because column 'countReferralsRegistrations' does not exist in table 'UserProfile'.
問題は、モデルとテーブルUserProfileにこの列がない(そして、したくない)ということです。
どうすれば解決できますか?
解決
最初に使用します:Add-Migration InitialMigrations -IgnoreChanges
次に
update-database verbose
。これはうまくいくでしょう
これは、テーブル列を手動で削除してデータベースを更新する可能性があるために発生します。
これがこの解決策です。-最後に作成した移行ファイルを開きます。-行の下にコメントし、データベースを再度更新します-DropForeignKey、DropIndex、DropColumn
ありがとうございました..