ASP.NET MVC Controller Naming Pluralization
I’m going to have to disagree with the previous answers of using either plural or singular and being consistent. Each controller should use a different convention based on whether they interact with single or multiple entities. Especially since the controller name is used by default in the URL. While the project templates use singular (HomeController, … Read more