基本的に、次のプロパティを持つ EF データベースにテーブルを取得しました。
public int Id { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public string Image { get; set; }
public string WatchUrl { get; set; }
public int Year { get; set; }
public string Source { get; set; }
public int Duration { get; set; }
public int Rating { get; set; }
public virtual ICollection<Category> Categories { get; set; }
正常に動作しますが、Rating の int を double に変更すると、データベースの更新時に次のエラーが発生します。
オブジェクト「DF_ Movies _Rating__48CFD27E」は列「Rating」に依存しています。ALTER TABLE ALTER COLUMN 1 つ以上のオブジェクトがこの列にアクセスしているため、評価に失敗しました。
問題は何ですか?