Currently a user has to do the following for inserting a per-route message handler. Provide an easier extension where we wire up the default HttpControllerDispatcher ourselves.
```
config.Routes.MapODataRoute(
routeName: "OData",
routePrefix: null,
model: ModelBuilder.GetEdmModel(), handler: HttpClientFactory.CreatePipeline(new HttpControllerDispatcher(config),
new DelegatingHandler[] { new ExcelCompliantMessageHandler() }));
```
```
config.Routes.MapODataRoute(
routeName: "OData",
routePrefix: null,
model: ModelBuilder.GetEdmModel(), handler: HttpClientFactory.CreatePipeline(new HttpControllerDispatcher(config),
new DelegatingHandler[] { new ExcelCompliantMessageHandler() }));
```