I have created a "Utilities" controller that is not bound to any model and contains only unbound functions.
I would like to be able to call this through a url like the following:
odata/Utilities/SomeMethod()
Right now I have to call it like the following:
odata/SomeMethod()
How do I create a custom route for "utilities"?
I have tried:
[ODataRoutePrefix("Utilities")]
public class UtilitiesController : ODataController
I have also tried:
[ODataRoute("Utilities/SomeMethod()"]
public string SomeMethod()
But both of these throw an error:
"The path template 'Utilities/SomeMethod()' on the action 'SomeMethod' in controller 'Utilities' is not a valid OData path template. Resource not found for the segment 'Utilities'."
You can override the default controller selector to achieve this. You can create a new class that inherits from
DefaultHttpControllerSelector
like this:And then you can replace the controller selector like this:
This lets you choose which controller to use at runtime for every request