Edited Issue: $select and $expand not working properly for complex types in...
Given the following model:``` public class JsonSelectCustomer{ public int Id { get; set; } public string Name { get; set; } public virtual IList<JsonSelectOrder> JsonSelectOrders { get; set; }}...
View ArticleCommented Issue: $select and $expand not working properly for complex types...
Given the following model:``` public class JsonSelectCustomer{ public int Id { get; set; } public string Name { get; set; } public virtual IList<JsonSelectOrder> JsonSelectOrders { get; set; }}...
View ArticleEdited Issue: $select response on Json formatter not maintaning the order of...
I checked with OData formatter and there the order is maintained as expected.Request(note the order of...
View ArticleCommented Issue: $select response on Json formatter not maintaning the order...
I checked with OData formatter and there the order is maintained as expected.Request(note the order of...
View ArticleEdited Issue: [CORS] Preflight request failed when there's an HttpOptions...
This is reported by a customer. See more details here: https://aspnetwebstack.codeplex.com/discussions/441725#editorRepro attached.
View ArticleCommented Unassigned: input type = email jquery validate overriding mvc data...
See http://stackoverflow.com/questions/16523525/input-type-email-jquery-validate-overriding-mvc-data-annotationComments: When you paste a stackoverflow thread asking for a solution, we are going post a...
View ArticleEdited Issue: input type = email jquery validate overriding mvc data...
When applying the following properties to a model:```[Required(ErrorMessage = "Email is required")][RegularExpression(RegularExpressions.Email, ErrorMessage = "Email is not...
View ArticleEdited Issue: Format handlers configuration in web.config after install Web...
After installing CORS package, the current behavior is: The handlers config is one line<handlers><remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" /><remove...
View ArticleEdited Feature: Update the Web API OWIN adapter to use Microsoft.Owin once it...
Biggest adoption blockers identified so far are:1. Potential null refs when computing URIs2. Doesn't throw when required keys are missing from the environment, or when the environment has the wrong...
View ArticleCommented Unassigned: WebAPI ODataLib dependency invalid [1055]
Currently the WebAPI OData package has a dependency on ODataLib >= 5.5.0-alpha2, however if you use ODataLib 5.5.0-rc1 everything breaks.The MyGet dependency value should probably be set to...
View ArticleEdited Issue: WebAPI ODataLib dependency invalid [1055]
Currently the WebAPI OData package has a dependency on ODataLib >= 5.5.0-alpha2, however if you use ODataLib 5.5.0-rc1 everything breaks.The MyGet dependency value should probably be set to...
View ArticleEdited Issue: Implement IODataUrlResolver so that ODataLib can resolve Url...
When doing the following batch request with DataServicesClient:```GeneratedDataServicesClient client = new GeneratedDataServicesClient(serviceUrl);client.Format.UseJson();BatchCustomer customer =...
View ArticleCommented Issue: Implement IODataUrlResolver so that ODataLib can resolve Url...
When doing the following batch request with DataServicesClient:```GeneratedDataServicesClient client = new GeneratedDataServicesClient(serviceUrl);client.Format.UseJson();BatchCustomer customer =...
View ArticleCommented Feature: MVC Support Adding HTML Attributes to SelectListItems [9]
I would like the ability to add Html attributes to individual SelectListItems via object htmlAttributes. This would be handy for applying CSS to selected options on render. I have working code for this...
View ArticleCommented Issue: Make JsonContractResolver a public class [228]
This would enable overriding the ResolvePropertyName method (see Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver) without having to reimplement the entire JsonContractResolver...
View ArticleEdited Issue: Empty SingleResult cannot be formatted by the ODataFormatter...
public override SingleResult<Customer> GetCustomer(int key){ return SingleResult.Create(Enumerable.Empty<Customer>());}
View ArticleCommented Issue: Empty SingleResult cannot be formatted by the ODataFormatter...
public override SingleResult<Customer> GetCustomer(int key){ return SingleResult.Create(Enumerable.Empty<Customer>());}Comments: Returning a 404 response when SingleResult has an empty...
View ArticleEdited Issue: FileExtensionsAttributeAdapter no longer works with jQuery...
The "Accept" rule in the latest version of jQuery Validate now expects a mime type to be specified, not a file extension.A new "Extensions" rule has subsequently been added for this purpose.Note that...
View ArticleCommented Issue: FileExtensionsAttributeAdapter no longer works with jQuery...
The "Accept" rule in the latest version of jQuery Validate now expects a mime type to be specified, not a file extension.A new "Extensions" rule has subsequently been added for this purpose.Note that...
View ArticleCreated Issue: JQuery Validation plugin - include additional-methods file [1057]
The JQuery Validation plugin is normally bundled with a file named additional-methods.js that adds some more validation methods to the basic ones that are in the plugin.Two of which, 'accept' (for...
View Article