Edited Issue: Date Format changes when posting data to web api controller in...
The problem is described in <b>detail</b> at http://stackoverflow.com/questions/12954961/date-format-changes-when-posting-data-to-web-api-controller-in-asp-net-mvc-4 and...
View ArticleEdited Issue: Date Format changes when posting data to web api controller in...
The problem is described in detail at http://stackoverflow.com/questions/12954961/date-format-changes-when-posting-data-to-web-api-controller-in-asp-net-mvc-4 and...
View ArticleEdited Issue: Date Format changes when posting data to web api controller in...
The problem is described in detail at http://stackoverflow.com/questions/12954961/date-format-changes-when-posting-data-to-web-api-controller-in-asp-net-mvc-4...
View ArticleEdited Issue: Date Format changes when posting data to web api controller in...
The problem is described in detail at http://stackoverflow.com/questions/12954961/date-format-changes-when-posting-data-to-web-api-controller-in-asp-net-mvc-4...
View ArticleNew Post: Microsoft.AspNet.Mvc.Facebook.Controllers approach
Hi I note with interest the addition of Microsoft.AspNet.Mvc.Facebook.Controllers. I have not had time to use this recently checked in code, but wanted to share some of the directions that I typically...
View ArticleCreated Issue: ReadAsMultipartAsync gives "Unexpected end of MIME multipart...
When I have a web API method with a signature like this:public async void Post()I get an exception that says:"Unexpected end of MIME multipart stream. MIME multipart message is not complete."when...
View ArticleNew Post: What is the best way to replace the default...
The following articles helped me to solve my problem: http://blog.ploeh.dk/2012/09/28/DependencyInjectionAndLifetimeManagementWithASPNETWebAPI.aspx...
View ArticleNew Post: What is the best way to replace the default...
@tohidazzi Thanks but those are not related to this topic.
View ArticleEdited Issue: Error writing out response when entityset does not have Edit...
In this scenario, I would like to make a read-only entityset for Products. I am commenting out the line which creates the Edit link. This is from the ODataService sample.ODataModelBuilder modelBuilder...
View ArticleEdited Issue: Can't query with entity type which has multiple entity sets [503]
If define same entity type in multiple entity sets:modelBuilder.EntitySet<Order>("OnlineOrders");modelBuilder.EntitySet<Order>("StoreOrders");and specify the edm model by...
View ArticleEdited Issue: QueryableAttribute doesn't support query on public field [441]
To repro:public class Movie{ public string Name = null;}public class MoviesController : ApiController{ [Queryable] public IEnumerable<Movie> Get() { return new Movie[] { new Movie { Name = "Test"...
View ArticleEdited Issue: Provide api to make Action parameters Nullable [461]
For the following action, I would like to make the parameter 'p3' nullable. Currently, there is no api on the ActionConfiguration which can make it Optional or Nullable. var actionConfig =...
View ArticleEdited Issue: Nonstandard primitives cannot be used as keys [495]
Using char as a key for example fails serialization and results in a closed connection with this exception:The CLR literal of type 'System.Char' is not supported to be written as a Uri part.When we try...
View ArticleEdited Feature: Add JSON Light support [483]
Need to set the ODataMessageWriterSetting.MetadataDocumentUri before calling ODataWriter
View ArticleEdited Issue: Provide ability to enable/disable generating Edit links on an...
Currently we can enable/disable generating Edit links on an EntitySet level. It could be useful to users to have the ability to enable/disable generating these links on a entity instance basis....
View ArticleEdited Issue: DefaultODataActionResolver can't handle overloads [467]
We should enable this test "Can_find_action_overload_using_bindingparameter_type()"So that the following urls: "http://server/service/Vehicles(8)/Container.Car/Wash"...
View ArticleCommented Feature: OData does not support $select [326]
This is the second most important odata commands after $filter. It's also trivial to implement because it's directly translatable to Dynamiclinq without alteration other than escaping it.Comments:...
View ArticleCreated Issue: $orderby not working on child entity [583]
when supplying an $orderby parameter which requires the access of a property on a child entity; the returned entity collection is not ordered correctly.example:...
View ArticleCommented Issue: $format is not supported [582]
ODATA services should support $format ($format=json and $format=atom) query string parameters.As described here http://www.odata.org/documentation/uri-conventions#FormatSystemQueryOption .Comments: I...
View Article