โดยทั่วไปฉันได้รับตารางในฐานข้อมูล 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 ของการให้คะแนนเป็นสองเท่าฉันได้รับข้อผิดพลาดต่อไปนี้เมื่ออัปเดตฐานข้อมูล:
วัตถุ 'DF_ Movies _Rating__48CFD27E' ขึ้นอยู่กับคอลัมน์ 'การให้คะแนน' ALTER TABLE ALTER COLUMN การจัดอันดับล้มเหลวเนื่องจากวัตถุหนึ่งรายการขึ้นไปเข้าถึงคอลัมน์นี้
มีปัญหาอะไร