यह संभवतः समय की समस्या का सबसे बड़ा अपशिष्ट है जिसे मैंने लंबे समय तक हल करने में घंटों बिताए हैं।
var db = new hublisherEntities();
establishment_brands est = new establishment_brands();
est.brand_id = 1;
est.establishment_id = 1;
est.price = collection["price"];
est.size = collection["size"];
db.establishment_brands.Add(est);
db.SaveChanges();
यह मुझे एक त्रुटि देता है
मान शून्य नहीं हो सकता। पैरामीटर नाम: स्रोत
का ढेर
[तर्कबोधक अपवाद: मूल्य शून्य नहीं हो सकता। पैरामीटर नाम: स्रोत] System.Linq.Enumerable.Any (IEnumerable
1 source, Func
2 predicate) +4083335 System.Data.Entity.Internal.InternalContext.WrapUpddexException (UpdateException updateException) +87
System.Data.Entity.Internal.InternContext 193
System.Data.Entity.Internal.LazyInternalContext.SaveChanges () +33
System.Data.Entity.DbContext.SaveChanges () +20 ...
मैं केवल तालिका में एक इकाई जोड़ना चाहता हूं। ORM EF है।