I'm starting to move away from having my classes in a folder called App_Code in my MVC4 projects, and moving all my classes into the folder called Models.
Now I've encountered a problem with my old code.
In my cshtml files I used to call my App_Code classes with a @using projectName.App_Code in the beginning of the file. But that doesn't work now.
My question is therefore; How would I call a class in my Model folder from my cshtml files?