标签:custom cat tle 简单 数据 res pre sql语句 cts
说明:更新操作,先获取对象,进行修改操作之后,直接调用SubmitChanges()方法即可提交。注意,这里是在同一个DataContext中,对于不同的DataContex看下面的讲解。
Customer cust = db.Customers.First(c => c.CustomerID == "ALFKI"); cust.ContactTitle = "Vice President"; db.SubmitChanges();
语句描述:使用SubmitChanges将对检索到的一个Customer对象做出的更新保持回数据库。
var q = from p in db.Products where p.CategoryID == 1 select p; foreach (var p in q) { p.UnitPrice += 1.00M; } db.SubmitChanges();
语句描述:使用SubmitChanges将对检索到的进行的更新保持回数据库。
标签:custom cat tle 简单 数据 res pre sql语句 cts
原文地址:http://www.cnblogs.com/SuperMetalMax/p/6210057.html