我有類似下面的代碼,您在下面看到作爲模板。 做這種記錄更新的不同方式是什麼,因爲我在下面的做法是行不通的。我正在使用實體框架。 C#被用作語言。MVC C#更新記錄
public ActionResult Edit(Truck_Mng truck_mng)
{
if (ModelState.IsValid)
{
// what are the different ways you can update the truck_mng record
// I tried what you see below but did not update the record
DataContext.Truck_Mng.Attach(truck_mng);
DataContext.SubmitChanges();
return RedirectToAction("Index");
}
return RedirectToAction("index");
}
我正在使用實體框架。
你在使用Entity Framework,Linq2Sql,DataSets嗎?您需要提供更多信息。 – 2011-12-20 22:31:31