I added a folder inside another folder in the views folder, like this:
Views / Registration / Profile
Within the profile folder are the .cshtml files. However, when I try to access the .cshtml files I get an error in the application, I have tried this solution: How to target an Action for a view inside a folder? and I could not solve it, the AP speaks in the end, which I have to create route, but I can not.
My controller looks like this:
public ActionResult Perfil()
{
var perfils = db.Perfil.Where(p => p.Nome != "Administrador" && p.IDStatus == 1).ToList();
return View("Perfil/"+perfils);
}