To będzie działać dla Ciebie.
uczynić klasa mieć związek w
public class ColorProduct
{
public int ProductId { get; set; }
public int ColorId { get; set; }
public Color Color { get; set; }
public Product Product { get; set; }
}
dodać zbiór ColorProduct do Produktu i kolorów klas
public ICollection<ColorProduct> ColorProducts { get; set; }
następnie użyć tego rozszerzenia i wykonane, aby usunąć zaznaczone i dodaj nowo wybrane do listy:
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);
}
używanie tego wygląda tak
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);
Wow, to jest niesamowite. Mogę użyć tego rozszerzenia we wszystkich moich projektach. Dziękuję za szybką odpowiedź. –
Najważniejszą częścią tego rozwiązania (i problemu w kodzie OP) jest wywołanie "Include". –
'Z wyjątkiem' rozszerzenie jest niesamowite, dzięki. –