I want to know which is the best convention for controller, action and view naming in ASP.Net MVC
When i create a "Product" Controller, should i name it productController or ProductController ? By default, visual studio Create ProductController. But that means the url will be http://mywebsite/Product/xxxx
Or we should not have upper case like this in URLs ? So i do not know which convention apply. This is the same for view names and action names...