Visual Studio Code – Get JsonResult within ActionResult
My data is being generated at a JsonResult which output is below. public JsonResult SampleAAA(Guid xxxxx){ //Code ... return Json(new { success = true, listA, listB, }, JsonRequestBehavior.AllowGet); } From an ActionResult I need to call that JsonResult and get…