Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 ADo.net 数据实体模型将行更新到数据库中?
每个数据行由一个对象表示。
您只需要获取所需的行,更新相关属性并使用对象上下文保存更改。
例如:
using(MyContext db = new MyContext()) { var customer = db.Customers.First(); customer.Name = "New Value"; db.SaveChanges(); }
你已经完成了。希望这可以帮助。