मूल रूप से मुझे निम्नलिखित गुणों के साथ अपने 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; }
हालाँकि यह ठीक काम करता है जब मैं रेटिंग के इंटेंस को डबल करने के लिए बदलता हूं तो मुझे डेटाबेस को अपडेट करते समय निम्न त्रुटि मिलती है:
ऑब्जेक्ट 'DF_ Movies _Rating__48CFD27E' कॉलम 'रेटिंग' पर निर्भर है। अन्य तालिका में से कोई भी एक या अधिक ऑब्जेक्ट इस स्तंभ तक पहुँचने में विफल रहा है।
मुद्दा क्या है?