Making Do with Absent Foreign Keys: Listing 2.
Adding and saving Leaf to the repository.
- By Julie Lerman
- 02/01/2012
[HttpPost]
public ActionResult Create(Leaf leaf)
{
if (ModelState.IsValid)
{
leafRepository.InsertOrUpdate(leaf);
leafRepository.Save();
return RedirectToAction("Index",
new { treeId = Request.Form["TreeId"] });
}
else
{
return View();
}
}
About the Author
Julie Lerman is a Microsoft MVP, .NET mentor and consultant who lives in the hills of Vermont. You can find her presenting on data access and otherMicrosoft .NET topics at user groups and conferences around the world. She blogs at thedatafarm.com/blog and is the author of "Programming Entity Framework" (2010) and "Programming Entity Framework: Code First" (2011), both from O'Reilly Media. Follow her on Twitter at twitter.com/julielerman.