Created Issue: Rename AllowedFunctionNames to AllowedFunctions [683]
And rename Enum values that include Name in the value
View ArticleEdited Issue: Query validator breaks query cast scenario [678]
Send query: $filter=WebStack.QA.Test.OData.Common.Models.Vehicle.MiniSportBike/TopSpeed gt 20"<br /><br />Server reports error:<br />Microsoft.Data.OData.ODataException occurred<br...
View ArticleCommented Issue: Query validator breaks query cast scenario [678]
Send query: $filter=WebStack.QA.Test.OData.Common.Models.Vehicle.MiniSportBike/TopSpeed gt 20"<br /><br />Server reports error:<br />Microsoft.Data.OData.ODataException occurred<br...
View ArticleEdited Issue: AllowedFunctionNames group enums don't include correct num...
The following commented lines fails with Assert.Equal(value2, value1 & value2);<br /><br /> var data = new TheoryDataSet<AllowedFunctionNames, AllowedFunctionNames>();<br />...
View ArticleCommented Issue: AllowedFunctionNames group enums don't include correct num...
The following commented lines fails with Assert.Equal(value2, value1 & value2);<br /><br /> var data = new TheoryDataSet<AllowedFunctionNames, AllowedFunctionNames>();<br />...
View ArticleEdited Issue: Null ref exception when trying to query(orderby) on a complex...
I am using the ODataServiceSample for my scenario.<br /><br />I am doing the following: Get all suppliers order by the State<br /><br />foreach (var supplier in...
View ArticleEdited Issue: Error trying to query on Count property of a navigation...
I was using the ODataServiceSample for this scenario. I am trying to do the following:<br /><br />Get product families which have more than 20 products.<br /><br />Code:<br...
View ArticleEdited Issue: Query composition error when derived type hides base type...
If user define type like:<br />public class BaseType<br />{<br /> public string Name { get; set; }<br />}<br />public class DerivedType : BaseType<br />{<br />...
View ArticleCommented Issue: Query composition error when derived type hides base type...
If user define type like:<br />public class BaseType<br />{<br /> public string Name { get; set; }<br />}<br />public class DerivedType : BaseType<br />{<br />...
View ArticleCommented Issue: Math functions doesn't support System.Double in $filter [684]
Define model:<br /><br />public class Model<br />{<br /> public double Double { get; set; }<br />}<br /><br />Send query: $filter=floor(Double) gt 5<br...
View ArticleEdited Issue: Rename AllowedFunctionNames to AllowedFunctions [683]
And rename Enum values that include Name in the value
View ArticleEdited Feature: Provide Tasks support in EntitySetController [679]
Currently the signatures of EntitySetController are synchronous. We should also look into providing Tasks support in EntitySetController.
View ArticleCreated Issue: MVC areas do not support RouteCollection.LowercaseUrls [685]
See http://stackoverflow.com/questions/13271048/net-4-5-mvc-routecollection-lowercaseurls-breaks-when-using-area for full details.It appears that this is caused by there being multiple instance of...
View ArticleEdited Issue: Consider improve the extensibility of DefaultODataPathHandler...
The scenario is to support azure url convention: /EntitySet/Key instead of /EntitySet(Key)<br /><br />Currently, if user want to override the default behavior, he needs to override the...
View ArticleCommented Issue: Consider improve the extensibility of...
The scenario is to support azure url convention: /EntitySet/Key instead of /EntitySet(Key)<br /><br />Currently, if user want to override the default behavior, he needs to override the...
View ArticleClosed Issue: Support composite keys in EntitySetController and ODataPath [675]
It's better to have strong typed key bindings.For example:public HttpResponseMessage Get(long key1, guid key2){}Comments: User can actually parse the multiple keys themselves in the EntitySetController.
View ArticleCreated Issue: Make EntitySetController unit testable [686]
Should we make the protected virtual methods public and marked with [NonAction]?
View ArticleEdited Issue: Consider supporting parsing and generating key values in...
So user doesn't need to call ODataUriUtils.ConvertToUriLiteral or ODataUriUtils.ConvertFromUriLiteral to parse the id by himself.
View ArticleCommented Issue: Consider supporting parsing and generating key values in...
So user doesn't need to call ODataUriUtils.ConvertToUriLiteral or ODataUriUtils.ConvertFromUriLiteral to parse the id by himself. Comments: Change the Value property to RawValue on KeyValuePathSegment....
View ArticleClosed Issue: Consider adding helper method to serialize and deserialize...
The helper method will be used for user to generate or parse link which contains key value segment.<br /><br />Currently, we use ODataUriUtils.ConvertToUriLiteral or ConvertFromUriLiteral...
View Article