开发者

Do any naming conventions exist for ASP .NET MVC 3?

As I am learning MVC 3 it has become apparent that naming is critical to getting the Dbase-Model-Controller-Views to talk together.

Is there an already existing list of naming conventions that should be used in a MVC application?

Something like:

  • Table names (plural)
  • Model names (singular of Table Name)
  • View folder must be same name as controller class (ie开发者_运维问答 Contract -> derived from ContractController)


The only major convention is that controller class names must end with "Controller". Any other conventions simply represent best practices and are not required for your application to work.

The table and model naming conventions you mentioned are there because they make the code "read" better (Select * From products where category = 1; Products.Insert(new Product()))

MVC automatically looks for a view that matches the name of the action method and it starts looking in a folder that has the same name as the controller. However you can easily trump that by specifying the view name in your view result (return View("MyCustomName"))


Not many name conventions exist that will break your application, other than the few such having your controllers end with "Controller" and name inference of the "View()" call from the action name.

MVC is based on the ideology of convention over configuration, so as I found out slowly, there are many conventions that are useful to follow, I have yet to come across a list though. They are subtle and very convenient... usually.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜