public ActionResult Edit()

in appx/Power BI Embedded/powerbi-sample-app/powerbi-sample-app/Controllers/AircraftController.cs [53:65]


        public ActionResult Edit(int id, FormCollection collection)
        {
            try
            {
                // TODO: Add update logic here

                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }
        }