BT

Facilitating the Spread of Knowledge and Innovation in Professional Software Development

Write for InfoQ

Topics

Choose your language

InfoQ Homepage News Using Custom Conventions In .NET

Using Custom Conventions In .NET

This item in japanese

Conventions Over Configuration approach used in several places by .NET designers to avoid excessive configuration. While the default conventions are helpful in getting up and running quickly, it can be useful sometimes to change the default behavior. We look at a few examples.

There are normally ways to work around the conventions for one-off cases by explicitly setting up the configuration, but what if you want to change the conventions themselves? These are some of the things possible -

  • Dino Esposito shows how the convention around ASP.NET MVC Controller names work, and how they can be modified
  • The convention for View locations in ASP.NET MVC can be changed if you use a Custom View Engine
  • Several conventions are used in Entity Framework CodeFirst, such as property that maps to the ID column and which class maps to which table automatically. These can be changed.

We have already covered Extensibility points in ASP.NET MVC earlier which provide several other opportunities to introduce your own desired conventions. 

The approach can be used with several third-party libraries as well. For example - 

Identifying where to stick with the default convention, and when not, is a matter of judgement. Using custom conventions in appropriate places can definitely make your code more maintainable. 

Rate this Article

Adoption
Style

BT