Edited Issue: The enum type member is not generated by...
Build an EdmModel thougth below code: ODataConventionModelBuilder builder = new ODataConventionModelBuilder(); EntitySetConfiguration<Employee> employees =...
View ArticleCommented Issue: The enum type member is not generated by...
Build an EdmModel thougth below code: ODataConventionModelBuilder builder = new ODataConventionModelBuilder(); EntitySetConfiguration<Employee> employees =...
View ArticleEdited Feature: Don't require Microsoft.Owin types in Web API OWIN Middleware...
The current Web API OWIN middleware adapter is currently tied directly to the Katana implementation of OWIN and is not portable to other OWIN implementations such as Fix and SimpleOwin. Please add...
View ArticleCommented Issue: Rename ErrorMessageResult to BadRequestErrorMessageResult...
Currently the ErrorMessageResult class is used to generate a result with a BadRequest status code. This is confusing as when the user does something like return new ErrorMessageResult() there is no...
View ArticleEdited Issue: Currently if a HTTP method is not supported Web API returns a...
In the current version of Web API, when the action selector does not find a matching action for a HTTP method it returns a 404 status code even when the resource URI supports other methods (e.g. it...
View ArticleCommented Issue: Currently if a HTTP method is not supported Web API returns...
In the current version of Web API, when the action selector does not find a matching action for a HTTP method it returns a 404 status code even when the resource URI supports other methods (e.g. it...
View ArticleEdited Issue: 405 response should include an "accept" header [1129]
According to the spec for 405 errors, [10.4.6](https://tools.ietf.org/html/rfc2616#page-66): > The response MUST include an Allow header containing a list of valid methods for the requested...
View ArticleCommented Issue: 405 response should include an "accept" header [1129]
According to the spec for 405 errors, [10.4.6](https://tools.ietf.org/html/rfc2616#page-66): > The response MUST include an Allow header containing a list of valid methods for the requested...
View ArticleEdited Issue: WebAPI returning 405 in cases that should be 404 [1130]
Sometimes WebAPI returns 405 in cases where it should return 404. If there is no possible verb to satisfy a URL, then it should be 404. Consider an empty controller:class TestController : ApiController...
View ArticleCommented Issue: WebAPI returning 405 in cases that should be 404 [1130]
Sometimes WebAPI returns 405 in cases where it should return 404. If there is no possible verb to satisfy a URL, then it should be 404. Consider an empty controller:class TestController : ApiController...
View ArticleCommented Feature: Template for html5 color input [87]
Html5 color template is missing.Comments: Fixed in changeset a5362969b4ce164ddb61ff23e5a6d79e9c11a1d5
View ArticleEdited Issue: 4 tests failing in...
The following tests are failing in System.Web.Http.Query.ODataQueryDeserializerTests when running on a PC with a non-US culture [e.g. English (Ireland)]:- DateInEqualities (2 failures)-...
View ArticleCommented Issue: 4 tests failing in...
The following tests are failing in System.Web.Http.Query.ODataQueryDeserializerTests when running on a PC with a non-US culture [e.g. English (Ireland)]:- DateInEqualities (2 failures)-...
View ArticleEdited Issue: 500 when binding to complex parameter with null Content [77]
Server has a 500 from a null reference exception when we call an action with a complex type and the request.content is null. void MyAction(MyComplexType c)And then call with:...
View ArticleCommented Issue: 500 when binding to complex parameter with null Content [77]
Server has a 500 from a null reference exception when we call an action with a complex type and the request.content is null. void MyAction(MyComplexType c)And then call with:...
View ArticleEdited Issue: MVC Editor Templates should support HTML5 input types such as...
For example, imagine this model type:public class MyModel{ public int ID { get; set; }[DataType(DataType.Url)] public string WebSite { get; set; }[DataType(DataType.EmailAddress)] public string Email {...
View ArticleCommented Issue: MVC Editor Templates should support HTML5 input types such...
For example, imagine this model type:public class MyModel{ public int ID { get; set; }[DataType(DataType.Url)] public string WebSite { get; set; }[DataType(DataType.EmailAddress)] public string Email {...
View ArticleCreated Unassigned: [ODataAttrRouting] $value support requires adding a route...
_Scenario_: I am using OData Attribute routing on a property of an entityCurrently I need to have 2 routes for support regular request and $value based one, otherwise I get a 404 when i make a request...
View ArticleCreated Unassigned: [ODataAttrRouting]Invalid route templates are not...
__Scenario__: I have a typo when supplying the url template for an OData route. Let's say the entity set name is incorrect.__Actual__:When the application launches, the attribute routes are not...
View Article