Commented Issue: Razor V2 Bug:Url Resolution Fails if you have Html Comment...
During discussing a thread in ASP.NET MVC forums, found a bug in Razor V2 in which the auto url resolution(~) will not work if you have an html comment with quotation or apostrophe before the url...
View ArticleCommented Issue: Razor bug parsing HTML [710]
Razor in MVC has a bug when parsing HTML comments with an apostrophe in them. The engine throws an "Expected }" exception. Below is an example on how to reproduce this issue in the default MVC 4...
View ArticleCommented Issue: [MvcAttributeRouting]Value from ActionName attribute not...
For the below action:```[RoutePrefix("Home")] public class HomeController : Controller{[HttpGet("Index")][ActionName("Default")] public ActionResult Index(){ return View();}}```the route generated is...
View ArticleEdited Issue: [MvcAttributeRouting]Value from ActionName attribute not being...
For the below action:```[RoutePrefix("Home")] public class HomeController : Controller{[HttpGet("Index")][ActionName("Default")] public ActionResult Index(){ return View();}}```the route generated is...
View ArticleEdited Feature: Support ODataMediaTypeFormatter usage by HttpClient [1140]
My company expects to implement IIS hosted Web APIs that run on app servers. These will be called by IIS hosted web applications that run on web servers.We can therefore use ApiControllers on the app...
View ArticleCommented Feature: Support ODataMediaTypeFormatter usage by HttpClient [1140]
My company expects to implement IIS hosted Web APIs that run on app servers. These will be called by IIS hosted web applications that run on web servers.We can therefore use ApiControllers on the app...
View ArticleEdited Feature: Add support for Spatial Data types in OData [1010]
Currently, there is no support for spatial data types in Web API OData. Consider adding support for this as it makes impossible to develop any service that has to deal with spatial data.
View ArticleEdited Issue: [OData] Add support for including non-key properties as well in...
We include the properties that the client has asked for (thorugh $select and $expand) and the entity keys in the projection expression we generate in the SelectExpandBinder.If people customize their...
View ArticleEdited Issue: Consider supporting parsing and generating key values in...
So user doesn't need to call ODataUriUtils.ConvertToUriLiteral or ODataUriUtils.ConvertFromUriLiteral to parse the id by himself.
View ArticleEdited Issue: '/', '\' and ' ' is not handled correctly in string primary key...
'/', '\' can't route to the correct action' ' will be null value when binding to the id parameter.Repro code: public static void RegisterODataRoutes(this HttpConfiguration configuration){// Metadata...
View ArticleCommented Issue: Serializing IQueryable doesn't work [1166]
When trying a query like/prefix/Customers?$expand=Ordersand having the following body:``` IQueryable result = options.ApplyTo(customers); if (result.ElementType != null &&...
View ArticleEdited Issue: Serializing IQueryable doesn't work [1166]
When trying a query like/prefix/Customers?$expand=Ordersand having the following body:``` IQueryable result = options.ApplyTo(customers); if (result.ElementType != null &&...
View ArticleCommented Issue: Consider changing the default value for MaxExpansionDepth to...
The default value for MaxExpansionDepth in Web API is set to 1. Although this works on most of the cases, having a default expansion value of two is much more reasonable, as it can cover scenarios like...
View ArticleEdited Issue: Consider changing the default value for MaxExpansionDepth to be...
The default value for MaxExpansionDepth in Web API is set to 1. Although this works on most of the cases, having a default expansion value of two is much more reasonable, as it can cover scenarios like...
View ArticleCommented Unassigned: [AttributeRouting]Route not being added to route...
In the following scenario, the Get() action on ReproController, which is decorated with an attribute route is _not_ being added to the route collection. On the other hand, the Get() action on the...
View ArticleCommented Unassigned: [WebApiOnOwin]Provide IAppBuilder extension which...
Scenario: Use Web API request batching on Owin.Our DefaultHttpBatchHandler requires us to supply the HttpServer instance to it, so I cannot use the 'UseWebApi' extension here. So, I am using the...
View ArticleCommented Feature: Please readd FormatterContext [221]
Hello there,today I updated to the RC version of the WebAPI and found that there was no real workable replacement for the FormatterContext.Beside I have no idea why it had to be removed there are...
View ArticleCommented Feature: Please readd FormatterContext [221]
Hello there,today I updated to the RC version of the WebAPI and found that there was no real workable replacement for the FormatterContext.Beside I have no idea why it had to be removed there are...
View ArticleCreated Unassigned: MQ: Move StyleCop build logic out into a NuGet package...
Instead of having a custom, private copy of StyleCop build logic (WebStack.StyleCop.targets), create a standard StyleCop targets NuGet package (that could be shared by others projects such as EF). Also...
View ArticleCreated Unassigned: MQ: Move xUnit build logic out into a NuGet package [1171]
Instead of having a custom, private copy of xUnit build system (test runner) logic (WebStack.xunit.targets), create a standard xUnit targets NuGet package (and share it with other projects such as EF)....
View Article