更新实体中的ICollection(实体框架6,ASP.NET核心)

编程入门 行业动态 更新时间:2024-10-26 18:21:42
本文介绍了更新实体中的ICollection(实体框架6,ASP.NET核心)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有两个模型:

public class Customer : People { public int CustomerID { get; set; } public decimal? Weight { get; set; } public decimal? Height { get; set; } public ICollection<Purchase> Cart { get; set; } }

public class Purchase { public int PurchaseID { get; set; } public DateTime Time { get; set; } public decimal TotalPrice { get; set; } public int Amount { get; set; } public Good Good { get; set; } }

我已经有客户需要更新他的购物车(例如为其添加smth) 。

I already have a customer and need to update his Cart (to add smth to it for example).

我试图像这样做smth但这没有任何作用。我做错了什么?

I've tried to do smth like this but this do nothing. What am i doing wrong?

Customer customer = new Customer() { CustomerID = currentID.Value }; var cart = new List<Purchase>(); cart.Add(new Purchase() { Amount = 1, Good = good, Time = DateTime.Now, TotalPrice = good.Price }); customer.Cart = cart; var entry = _context.Entry(customer); _context.Update(customer); _context.SaveChanges();

推荐答案

在EF6中(不确定它与EF Core是否相同),您可以执行以下操作来更新记录。

In EF6 (not sure if it's the same with EF Core) you would do the following to update a record. _context.Entry(customer).State = EntityState.Modified; _context.SaveChanges();

更多推荐

更新实体中的ICollection(实体框架6,ASP.NET核心)

本文发布于:2023-11-08 22:10:11,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1570588.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:实体   框架   核心   ICollection   ASP

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!