Entity Framework Core
एक से कई संबंधों को अद्यतन करना
खोज…
परिचय
EF Core में कई सारे रिश्तों को कैसे अपडेट करें:
MVC POST उदाहरण संपादित करें
मान लें कि हमारे पास कई रंगों वाला एक उत्पाद वर्ग है जो कई उत्पादों पर हो सकता है।
public class Product
{
public int ProductId { get; set; }
public ICollection<ColorProduct> ColorProducts { get; set; }
}
public class ColorProduct
{
public int ProductId { get; set; }
public int ColorId { get; set; }
public virtual Color Color { get; set; }
public virtual Product Product { get; set; }
}
public class Color
{
public int ColorId { get; set; }
public ICollection<ColorProduct> ColorProducts { get; set; }
}
इस एक्सटेंशन का उपयोग करना आसान बनाने के लिए:
public static class Extensions
{
public static void TryUpdateManyToMany<T, TKey>(this DbContext db, IEnumerable<T> currentItems, IEnumerable<T> newItems, Func<T, TKey> getKey) where T : class
{
db.Set<T>().RemoveRange(currentItems.Except(newItems, getKey));
db.Set<T>().AddRange(newItems.Except(currentItems, getKey));
}
public static IEnumerable<T> Except<T, TKey>(this IEnumerable<T> items, IEnumerable<T> other, Func<T, TKey> getKeyFunc)
{
return items
.GroupJoin(other, getKeyFunc, getKeyFunc, (item, tempItems) => new { item, tempItems })
.SelectMany(t => t.tempItems.DefaultIfEmpty(), (t, temp) => new { t, temp })
.Where(t => ReferenceEquals(null, t.temp) || t.temp.Equals(default(T)))
.Select(t => t.t.item);
}
}
किसी उत्पाद के रंगों को अपडेट करना इस तरह दिखेगा (MVC Edit POST विधि)
[HttpPost]
public IActionResult Edit(ProductVm vm)
{
if (ModelState.IsValid)
{
var model = db.Products
.Include(x => x.ColorProducts)
.FirstOrDefault(x => x.ProductId == vm.Product.ProductId);
db.TryUpdateManyToMany(model.ColorProducts, vm.ColorsSelected
.Select(x => new ColorProduct
{
ColorId = x,
ProductId = vm.Product.ProductId
}), x => x.ColorId);
db.SaveChanges();
return RedirectToAction("Index");
}
return View(vm);
}
public class ProductVm
{
public Product Product { get; set; }
public IEnumerable<int> ColorsSelected { get; set; }
}
कोड को सरल बनाया गया है जितना मैं कर सकता हूं, किसी भी वर्ग पर कोई अतिरिक्त गुण नहीं।
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow