Edited Issue: NullPropagation option smart detection should handle...
We try to figure out whether we should do null propagation in query composition by looking at the QueryProvider of the IQueryable. We handle Linq2Objects, Linq2Sql and EntityFramework there. For...
View ArticleEdited Issue: NullPropagation option smart detection should handle...
We try to figure out whether we should do null propagation in query composition by looking at the QueryProvider of the IQueryable. We handle Linq2Objects, Linq2Sql and EntityFramework there. For...
View ArticleCommented Feature: Async filters for ASP.NET MVC [1185]
Asynchronous filters would be helpful for ASP.NET MVC (WebAPI already has them).Copied from: https://aspnet.codeplex.com/workitem/9582Comments: +10000 This is a must to have. at some point in ASP.NET...
View ArticleClosed Issue: Web Api attribute routing is adding NonAction decorated method...
__Scenario__:A user sometimes would like to keep some methods public in his controller but would not like it to be invoked by end users, so he decorates it with [NonAction] attribute.__Issue__:In the...
View ArticleClosed Issue: Add support to attribute routing for ignoring the route prefix...
AttributeRouting.net has an option for ignoring the route prefix:```[RoutePrefix("Prefix")]public class IgnorePrefixController : Controller{[GET("Index")] // => "Prefix/Index"[GET("NoPrefix",...
View ArticleClosed 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 ArticleClosed Issue: "Multiple actions found" error due to incorrect route created...
__Scenario__: User likes to support CORS for one of his actions and so he decorates the action with HttpPost and HttpOptions attributes.Attached a standalone katana selfhost...
View ArticleClosed Issue: ApiExplorer doesn't return any descriptions when attribute...
__Note__: This behavior is after today's check-in of 'direct-routes' in webapi's attribute routing.__Scenario__: User views the apis he is exposing in HelpPage.__Issue__: HelpPage depends on...
View ArticleClosed Issue: [Regression]Multipart parser not setting content length header...
Attached a repro.__Issue__:The below action is returning null when actually there is valid data in the content. The issue here is that the content header ‘Content-Length’ value is 0 even though the...
View ArticleClosed 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 ArticleClosed Issue: Help Pages XmlDocumentationProvider should process class level...
We've got support for parsing comments generated for methods, but not the class. Would be great to also be able to provide class level xml comments.Comments: Verified.
View ArticleClosed Feature: Provide a way to specify actual return type for actions...
OData and HelpPage areas are effected by this:__OData____Error__:{"Message":"An error has occurred.","ExceptionMessage":"Cannot create an EDM model as the action 'Get' on controller 'Customers' has a...
View ArticleClosed Issue: [AttributeRouting]Action having multiple attributes should have...
For the following action:```[HttpPost("api/values/path1")][HttpGet("api/values/path2")] public void DoSomething(){}```Currently the routes in the collection are like following:RouteTemplate:...
View ArticleClosed Issue: In MVC attribute routing, ignoring route prefix fails when '~/'...
__Scenario__:User likes to make the HomeController's Index as the default view when anyone visits like "http://mysite.com"__Issue__:I am receiving the following validation error for the following...
View ArticleClosed Issue: Post error: Either BinaryRead, Form, Files, or InputStream was...
See full [question in Stackoverflow](http://stackoverflow.com/questions/17602845/post-error-either-binaryread-form-files-or-inputstream-was-accessed-before-t)After performing the downgrade webapi, it...
View ArticleClosed Issue: Don't use ClientDisconnectedToken on Web Host yet [1179]
HttpResponseBase.ClientDisconnectedToken currently has reliability problems. We shouldn't use it until as our cancellationToken in Web API WebHost until these problems are fixed.Comments: This is fixed.
View ArticleClosed Issue: Cancellation token should be flowed into the following Web API...
ICorsPolicyProvider.GetCorsPolicyAsyncDefaultODataBatchHandler.ParseBatchRequestsAsyncDefaultODataBatchHandler.CreateResponseMessageAsyncUnbufferedODataBatchHandler.CreateResponseMessageAsyncDefaultHtt...
View ArticleClosed Issue: jquery.unobtrusive-ajax.js using deprecated live() method [318]
As of jquery 1.7, live() has been deprecated. http://api.jquery.com/live/
View Article