Source code checked in, #6a40893f936139a328d9ce2a8b089bd276c2192c
Now that we only have 1 RoutePrefix per class, remove Order property.
View ArticleEdited Issue: [AttributeRouting]Handle scenario when multiple route prefixes...
Currently the following would cause a problem, as we try to create 2 routes(one for each route prefix) with the same route name calle...
View ArticleEdited Unassigned: Hiding controller from showing up on HelpPage does not...
__Scenario__:User does not like to show up a controller on HelpPage (ex: EntitySetController in OData), so he would like to use setting like [ApiExplorerSettings(IgnoreApi=true)] on the...
View ArticleClosed Issue: $expand fails when the navigation property being expanded is...
**Url**`/api/passos?$expand=ProximoPasso&$select=Nome,ProximoPasso/Nome`**Code**``` public abstract class EntityNome : IEntity{ public int Id { get; set; } public string Nome { get; set; }}``````...
View ArticleEdited Unassigned: MVC attribute routing fails for multiple routes with the...
__Scenario__:User decorates the controller and actions with attributed routes and expects the applicaiton to work.__Issue__:Consider the following two actions in AccountController(shortened for...
View ArticleCommented Unassigned: MVC attribute routing fails for multiple routes with...
__Scenario__:User decorates the controller and actions with attributed routes and expects the applicaiton to work.__Issue__:Consider the following two actions in AccountController(shortened for...
View ArticleSource code checked in, #554884d26e2df80199bd01fd5b4b7174ae4c811b
Update to latest version of Microsoft.Owin
View ArticleCommented Issue: DefaultBodyModelValidator should use...
DefaultBodyModelValidator.ValidationContext.Visited is a HashSet<object> used to detect and avoid cycles in object graphs during validation. It uses Object equality rather than reference...
View ArticleEdited Issue: DefaultBodyModelValidator should use ReferenceEqualityComparer...
DefaultBodyModelValidator.ValidationContext.Visited is a HashSet<object> used to detect and avoid cycles in object graphs during validation. It uses Object equality rather than reference...
View ArticleClosed Issue: [OData]EntityInstanceContext.EntityInstance is obsolete. [1015]
Consider adding back compat support by trying to lazily initialize this property from EntityInstanceContext.EdmObject.Now that we support $select and $expand, we optimize the query that we generate to...
View ArticleSource code checked in, #cdf115d6198a38d08d5d773de7b71c27bbbe749b
Issue 1138: Action invocation fails when attribute routing is used and trace is also enabled
View ArticleEdited Issue: Action invocation fails when attribute routing is used and...
I have a simple setup which contains ValuesController decorated with attributed routes. I am seeing the following error when tracing is __enabled__.Attached a standalone katana selfhost...
View ArticleCommented Issue: Action invocation fails when attribute routing is used and...
I have a simple setup which contains ValuesController decorated with attributed routes. I am seeing the following error when tracing is __enabled__.Attached a standalone katana selfhost...
View ArticleEdited Issue: Action invocation fails when attribute routing is used and...
I have a simple setup which contains ValuesController decorated with attributed routes. I am seeing the following error when tracing is __enabled__.Attached a standalone katana selfhost...
View ArticleCreated Unassigned: In web api attribute routing, force users to supply...
__For the following case__:```[RoutePrefix("api/values")]public class ValuesController : ApiController{ public IEnumerable<string> GetAllValues() { return new string[] { "value1", "value2" };...
View ArticleSource code checked in, #962c265473d77ec62dab3361886ca96178a8b886
Issue 1150: Add support to attribute routing for ignoring the route prefix
View ArticleSource code checked in, #5aedf25113a8c28af9e43ba9cd1247fd25ecabda
Issue 1150: Add support for ignoring route prefixes to MVC attribute routing
View ArticleCreated Unassigned: Helpage UI to show the root request url path [1153]
A very minor user experience issue.For the following controller:```[RoutePrefix("api/values")] public class ValuesController : ApiController{[HttpGet("")][HttpGet("/")] public IEnumerable<string>...
View ArticleClosed Issue: Remove fast path in UrlHelper.ODataLink once custom routes are...
From code comments:// Fast path link generation where we recognize an OData path of the form "prefix/{*odataPath}".// This is incredibly brittle code and should be removed whenever OData is upgraded to...
View Article