I have a strange problem with my model passed to the View
Controller
[Authorize] public ActionResult Sth() { return View(\"~/Views/S
If you use named parameters you can skip the need to give the first parameter altogether
return View(model:"abc");
or
return View(viewName:"~/Views/Sth/Sth.cshtml", model:"abc");
will also serve the purpose.