Commented Unassigned: Parameters binding [1453]
Hi,I'm actually migrating from MVC 3 to MVC 4 and I'm confronted to a weird issue.All this was working well on MVC3, and an empty MVC4 project can easily reproduce this issue.I have a controller...
View ArticleCreated Unassigned: WebApi validation ignores ErrorMessage in Data Annotation...
WebApi validation ignores custom Error Message in Data Annotation attributes, f.e. Required.Given the code:View Model:```public class InputVM : IValidatableObject{#region Properties///...
View ArticleEdited Unassigned: WebApi validation ignores ErrorMessage in Data Annotation...
WebApi validation ignores custom Error Message in Data Annotation attributes, f.e. Required.Given the code:View Model:```public class InputVM : IValidatableObject{#region Properties///...
View ArticleEdited Unassigned: WebApi validation ignores ErrorMessage in Required Data...
WebApi validation ignores custom Error Message in Required Data Annotation attribute.Given the code:View Model:```public class InputVM : IValidatableObject{#region Properties/// <summary>///...
View ArticleCommented Issue: Odata route versioning and service document [1367]
Following the general principle of route based versioning outlined here: http://aspnet.codeplex.com/SourceControl/latest#Samples/WebApi/ODataVersioningSample/ReadMe.txtI have the following in my v1...
View ArticleCreated Unassigned: GenerationRoute does not return the same values as...
Hi,properties (_RouteTemplate_, _Defaults_, _Constraints_, _DataTokens_ and _Handler_) of the __GenerationRoute__ from System.Web.Http.Routing should return the same values as it's innerRoute. The...
View ArticleEdited Unassigned: GenerationRoute does not return the same values as...
Hi,properties (_RouteTemplate_, _Defaults_, _Constraints_, _DataTokens_ and _Handler_) of the __GenerationRoute__ from System.Web.Http.Routing should return the same values as innerRoute. The...
View ArticleCreated Unassigned: Projection and $expand results in The argument to...
When exposing an OData service with a 'projected' DTO model, $expand on a To-One relationship throws a "The argument to DbIsNullExpression must refer to a primitive, enumeration or reference type."...
View ArticleCommented Unassigned: Projection and $expand results in The argument to...
When exposing an OData service with a 'projected' DTO model, $expand on a To-One relationship throws a "The argument to DbIsNullExpression must refer to a primitive, enumeration or reference type."...
View ArticleEdited Issue: Add scaffolding for EntitySetControllers [720]
We should be able to scaffold an EntitySetController given a model type.
View ArticleEdited Issue: Make EntitySetController easier to unit test [686]
Should we make the protected virtual methods public and marked with [NonAction]?
View ArticleEdited Unassigned: XmlMediaTypeFormatter does not expose an option to include...
The XmlMediaTypeFormatter does not expose an option to include the XML declarationAs per https://aspnetwebstack.codeplex.com/discussions/433153
View ArticleClosed Issue: Roundtripping DBNull value using Bsonformatter thrown an error...
Value I am roundtripping - DBNull.ValueAll Webapi action (POST) does is return the value.Exception{"Error writing Null value. BSON must start with an Object or Array. Path ''."}Stack Trace: at...
View ArticleClosed Issue: Bsonformatter throws an error when passing simple types as...
Server side code public class MyController : ApiController{[AcceptVerbs("PUT", "POST", "DELETE")] public object EchoDBNullFromBody(object input) { return input;}}On the client, if I use...
View ArticleCreated Unassigned: Limitations on Orderby don't work [1474]
When you set some properties as unorderable, they don't get respected unless you add at least a property in the AllowedOrderByProperties property of the ODataQueryOptions instance.
View ArticleCommented Unassigned: ApiExplorer cannot figure out the correct URI...
ApiExplorer cannot figure out the correct URI Parameters if I plug in a custom IHttpActionSelector. A repro application is available here:...
View ArticleCommented Unassigned: GenerationRoute does not return the same values as...
Hi,properties (_RouteTemplate_, _Defaults_, _Constraints_, _DataTokens_ and _Handler_) of the __GenerationRoute__ from System.Web.Http.Routing should return the same values as innerRoute. The...
View ArticleEdited Issue: WebApi validation ignores ErrorMessage in Required Data...
WebApi validation ignores custom Error Message in Required Data Annotation attribute.Given the code:View Model:```public class InputVM : IValidatableObject{#region Properties/// <summary>///...
View ArticleCommented Issue: WebApi validation ignores ErrorMessage in Required Data...
WebApi validation ignores custom Error Message in Required Data Annotation attribute.Given the code:View Model:```public class InputVM : IValidatableObject{#region Properties/// <summary>///...
View ArticleEdited Unassigned: [Regression]: Unexpected validationError thrown when...
Here is my model[DataContract] public class ValidationModel{[Required][DataMember][Range(1, 10)] public int IntReq { get; set; }[Required][DataMember][StringLength(5)] public string StrReq { get; set;...
View Article