Commented Issue: $metadata requests should throw an exception when there is...
Right now we just get a 406 with no error, because there are no formatters registeredComments: Fixed, opted to remove SetODataFormatter and use the formatters collection instead:...
View ArticleCommented Issue: HttpError only reports the absolute inner exception losing...
If we have an action with the following code: Exception exception = new Exception("0"); for (int count = 0; count < 10; count++) { exception = new Exception(count.ToString(), exception); } throw...
View ArticleEdited Issue: Queryable can't query on nested type property [559]
To repro, using the model: public class NestedClass_Parent { public class Nest { public string Name { get; set; } public NestPropertyType NestProperty { get; set; } } public class NestPropertyType {...
View ArticleCommented Issue: Queryable can't query on nested type property [559]
To repro, using the model: public class NestedClass_Parent { public class Nest { public string Name { get; set; } public NestPropertyType NestProperty { get; set; } } public class NestPropertyType {...
View ArticleCreated Issue: Can't serialize edm model which is different with the one in...
If user wants to write his own metadata controller to return metadata which is different with the model in the formatter, it will still return the model from formatter.For example, I build an empty edm...
View ArticleCreated Issue: Hard to support custom service document [577]
If user wants to implement his own metadata controller, it will be hard for him to get the service document.1. There is no virtual method in ODataMetadataController to let user to override EdmModel2....
View ArticleEdited Issue: Hard to support customize service document [577]
If user wants to implement his own metadata controller, it will be hard for him to get the service document.1. There is no virtual method in ODataMetadataController to let user to override EdmModel2....
View ArticleCreated 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 <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 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 ArticleEdited 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 ArticleCommented 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 ArticleCommented Issue: Collection property deserialization doesn't work [422]
When send back with collection property data in entity payload, it reports error: no collection property support yet.>...
View ArticleEdited Issue: Collection property deserialization doesn't work [422]
When send back with collection property data in entity payload, it reports error: no collection property support yet.>...
View ArticleClosed Issue: Hard to support customize service document [577]
If user wants to implement his own metadata controller, it will be hard for him to get the service document.1. There is no virtual method in ODataMetadataController to let user to override EdmModel2....
View ArticleClosed Issue: Can't serialize edm model which is different with the one in...
If user wants to write his own metadata controller to return metadata which is different with the model in the formatter, it will still return the model from formatter.For example, I build an empty edm...
View ArticleCreated Issue: Tracing formatters should expose the inner formatter [580]
This is required by OData. A workaround was implemented that also needs to be removed.
View Article