Tim McCall
Tim McCall
Is there anything new to report on this? I'm interested in .NET Core support as well.
2.x works for me! Thanks for the feedback.
RoutePrefix prefixes only with what you specify. If you want things to start with "api" you've got to say so. On Mar 18, 2013, at 5:38 AM, smolesen [email protected] wrote:...
I see. Probably the default Web API routes work because it is using that generic route mapping and the web api bits consider method params when resolving actions. With AR,...
@taschmidt -- Those routes won't work as expected due to integration issues with Web API (pending vNext release). [See here for more info](https://github.com/mccalltd/AttributeRouting/issues/96). The upshot is you need to do...
Sorry for the huge delay. Here's some code that might work. I am still trying to understand the problem. ``` csharp public static class AttributeRouting { public static void RegisterRoutes(RouteCollection...
Optional query params do not work in web api due to integration issues. On Jul 3, 2013, at 8:59 AM, nbcwasp [email protected] wrote: > I am trying to create a...
I believe it's on the web site and marked in red already. :) http://attributerouting.net/#asp-net-web-api On Jul 3, 2013, at 9:03 AM, nbcwasp [email protected] wrote: > Would you be so kind...
Interesting.... Should be simple to do via a route constraint that is added if the Ajax flag is true. In your example, though, you'd have to have your ajax route...
Yep. So they are retrieved in the order declared. You can override that within a controller using the ControllerPrecedence property (if you can't or don't want to reorder). ActionPrecedence would...