我试图寻找办法,利用类似于以下氮的海滩通道,进行多次更新记录。 这种氮化物在价值类型上的工作。 如果有人愿意分享他们在多国公司框架中多次更新记录的经验。 预 收
public ActionResult UpdateProductPrice()
{
var products = _rep.GetProducts();
foreach (Product p in products)
{
decimal oPrice = p.Price;
p.Price = oPrice * .15
UpdateModel(p);
_rep.Save();
}
return View("Index");
}