I am working in VS 2010 and MVC2. Here i had loaded a gridview, which has edit option.Here is My Edit source
public ActionResult Edit(int id)
{
return View(data.Products.FirstOrDefault(p => p.ProductID == id));
}
[HttpPost]
public ActionResult Edit(Product producttoedit)
{
try
{
data.Products.Attach(data.Products.Single(p => p.ProductID == producttoedit.ProductID));
data.Products.ApplyCurrentValues(producttoedit);
data.SaveChanges();
return RedirectToAction("Index");
}
catch
{
return View();
}
}
Issue : I cant get the "ApplyCurrentValues (data.Products.Apply..)" property here.What should i do..? or is there any option for edit coding in the gridview