tags:

views:

68

answers:

2
+1  A: 

In convention over configuration frameworks, your code won't work if you don't follow the conventions.

BioBuckyBall
@BioBuckyBall that's not a good example, since is extremely easy to not follow that particular convention i.e. return View("WhicheverViewName")
eglasius
+1  A: 

a controller class name must always end with "Controller" i.e. HomeController ...

that is one that will blow if you don't follow it.

eglasius