Zasadniczo mam tabelę w mojej bazie danych EF z następującymi właściwościami:
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; }
Działa dobrze, jednak gdy zmieniam wartość int Rating na podwójną, podczas aktualizacji bazy danych pojawia się następujący błąd:
Obiekt „DF_ Movies _Rating__48CFD27E” zależy od kolumny „Rating”. ALTER TABLE ALTER COLUMN Ocena nie powiodła się, ponieważ co najmniej jeden obiekt uzyskuje dostęp do tej kolumny.
W czym problem?