기본적으로 나는 다음 속성을 가진 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; }
그러나 등급의 int를 double로 변경하면 데이터베이스를 업데이트 할 때 다음 오류가 발생합니다.
'DF_ Movies _Rating__48CFD27E' 개체 는 'Rating'열에 종속됩니다. ALTER TABLE ALTER COLUMN 하나 이상의 개체가이 열에 액세스하므로 평가에 실패했습니다.
무엇이 문제입니까?