Example #1
0
 IEnumerable <Person> getEnumerable()
 {
     using (DbMvc db = new DbMvc())
     {
         return(db.People.ToList());
     }
 }
Example #2
0
 public ActionResult Create(Person data)
 {
     using (DbMvc db = new DbMvc())
     {
         try
         {
             db.People.Add(data);
             db.SaveChanges();
             return(Json(new { success = "success", message = "Successfully added to db", }, JsonRequestBehavior.DenyGet));
         }
         catch (Exception e)
         {
             return(Json(new { error = "Error", message = e.Data.ToString() + " Error While posting to Db " }, JsonRequestBehavior.DenyGet));
         }
     }
     //return Json(data, JsonRequestBehavior.DenyGet);
 }