-->

Part 2 - How to implement Basic CRUD Functionality with the Entity Framework and ASP.NET MVC4 application



Introduction

In this post, How to implement Basic CRUD Functionality with the Entity Framework and ASP.NET MVC4 application.
I have split the entire application split into following 3 parts for making things more simple and understandable specially for beginners.

Steps :

Step-1: Write function for fetch countries from database.

Here I have written the below function "GetCountry" into "Contacts" Controller.
  1. private List<Country> GetCountry()
  2. {
  3. using (MyDatabaseEntities dc = new MyDatabaseEntities())
  4. {
  5. return dc.Countries.OrderBy(a => a.CountryName).ToList();
  6. }
  7. }

Step-2: Write function for fetch states from database.

Here I have written the below function "GetState" into "Contacts" Controller.
  1. private List<State> GetState(int countryID)
  2. {
  3. using (MyDatabaseEntities dc = new MyDatabaseEntities())
  4. {
  5. return dc.States.Where(a => a.CountryID.Equals(countryID)).OrderBy(a => a.StateName).ToList();
  6. }
  7. }

Step-3: Write function for return state list of selected country in json format, which we will use for cascade dropdown.

Here I have written the below function "GetStateList" into "Contacts" Controller.
  1. public JsonResult GetStateList(int countryID)
  2. {
  3. using (MyDatabaseEntities dc = new MyDatabaseEntities())
  4. {
  5. return new JsonResult { Data = GetState(countryID), JsonRequestBehavior = JsonRequestBehavior.AllowGet };
  6. }
  7. }

Step-4: Write function for fetch contact data from database.

Here I have written the below function "GetContact" into "Contacts" Controller.
  1. public Contact GetContact(int contactID)
  2. {
  3. Contact contact = null;
  4. using (MyDatabaseEntities dc = new MyDatabaseEntities())
  5. {
  6. var v = (from a in dc.Contacts
  7. join b in dc.Countries on a.CountryID equals b.CountryID
  8. join c in dc.States on a.StateID equals c.StateID
  9. where a.ContactID.Equals(contactID)
  10. select new
  11. {
  12. a,
  13. b.CountryName,
  14. c.StateName
  15. }).FirstOrDefault();
  16. if (v != null)
  17. {
  18. contact = v.a;
  19. contact.CountryName = v.CountryName;
  20. contact.StateName = v.StateName;
  21. }
  22. return contact;
  23. }
  24. }

Step-5: Add new action into your controller for get view for Save (Add and Edit) contact.

Here I have used "Save" Action. Please write this following code

  1. public ActionResult Save(int id = 0)
  2. {
  3. List<Country> country = GetCountry();
  4. List<State> states = new List<State>();
  5. if (id > 0)
  6. {
  7. //Update
  8. var c = GetContact(id);
  9. if (c != null)
  10. {
  11. ViewBag.Countries = new SelectList(country, "CountryID", "CountryName", c.CountryID);
  12. ViewBag.States = new SelectList(GetState(c.CountryID), "StateID", "StateName", c.StateID);
  13. }
  14. else
  15. {
  16. return HttpNotFound();
  17. }
  18. return View(c);
  19. }
  20. else
  21. {
  22. //Create
  23. ViewBag.Countries = new SelectList(country, "CountryID", "CountryName");
  24. ViewBag.States = new SelectList(states, "StateID", "StateName");
  25. return View();
  26. }
  27. }

Step-6: Add view for the Action & design.

Right Click on Action Method (here right click on the action) > Add View... > Enter View Name > Select View Engine (Razor) > Check "Create a strong-typed view" > Select your model class > Add.
[N:B:Please Rebuild solution before add view.]

Step-7: Add following jquery code in the view for cascade dropdown (country > state).

Please write this following code

  1. <script>
  2. $(document).ready(function () {
  3. $('#CountryID').change(function () {
  4. var countryID = $(this).val();
  5. var $state = $('#StateID');
  6. $state.empty();
  7. $state.append($('<option></option>').val('').html('Please Wait...'));
  8.  
  9. if (countryID =="") {
  10. $state.empty();
  11. $state.append($('<option></option>').val('').html('Select State'));
  12. return;
  13. }
  14.  
  15. $.ajax({
  16. url: '/Contacts/GetStateList',
  17. type: 'GET',
  18. data: { 'countryID': countryID },
  19. dataType: 'json',
  20. success: function (d) {
  21. $state.empty();
  22. $state.append($('<option></option>').val('').html('Select State'));
  23. $.each(d, function (i, val) {
  24. $state.append($('<option></option>').val(val.StateID).html(val.StateName));
  25. });
  26. },
  27. error: function () {
  28. alert('Error');
  29. }
  30. });
  31. });
  32. });
  33. </script>

Step-8: Add an another action for POST method for Save contact to the database.

Please write this following code

  1. [HttpPost]
  2. [ValidateAntiForgeryToken]
  3. public ActionResult Save(Contact c)
  4. {
  5. string message = "";
  6. bool status = false;
  7.  
  8. //Save
  9. if (ModelState.IsValid)
  10. {
  11. using (MyDatabaseEntities dc = new MyDatabaseEntities())
  12. {
  13. if (c.ContactID > 0)
  14. {
  15. //Update
  16. var v = dc.Contacts.Where(a => a.ContactID.Equals(c.ContactID)).FirstOrDefault();
  17. if (v != null)
  18. {
  19. v.ContactPerson = c.ContactPerson;
  20. v.ContactNo = c.ContactNo;
  21. v.CountryID = c.CountryID;
  22. v.StateID = c.StateID;
  23. }
  24. else
  25. {
  26. return HttpNotFound();
  27. }
  28. }
  29. else
  30. {
  31. //Add new
  32. dc.Contacts.Add(c);
  33. }
  34. dc.SaveChanges();
  35. status = true;
  36. return RedirectToAction("Index");
  37. }
  38. }
  39. else
  40. {
  41. message = "Error! Please try again.";
  42. ViewBag.Countries = new SelectList(GetCountry(), "CountryID", "CountryName", c.CountryID);
  43. ViewBag.States = new SelectList(GetState(c.CountryID), "StateID", "StateName", c.StateID);
  44. }
  45. ViewBag.Message = message;
  46. ViewBag.Status = status;
  47. return View(c);
  48. }

Step-9: Run Application.

Download  Live Demo

Hello ! My name is Sourav Mondal. I am a software developer working in Microsoft .NET technologies since 2010.

I like to share my working experience, research and knowledge through my site.

I love developing applications in Microsoft Technologies including Asp.Net webforms, mvc, winforms, c#.net, sql server, entity framework, Ajax, Jquery, web api, web service and more.

Related Posts: