Edited Issue: All functions and actions are added as function imports and...
Per protocol bound action/function should not be added as actionImport/functionImport. But now they become imports. It is related to this change:commit c5afbeeacada58142856a27654f5dc7078d35388Author:...
View ArticleCreated Unassigned: View files should not be required when deploying a...
If you precompile your MVC4 website, you can remove all your views.The views are just turned into markers (a holdover from webforms), but they are not used at all. You can simply delete and not worry...
View ArticleCreated Unassigned: NoActionFoundForCollection is incorrect [1710]
The error code NoActionFoundForCollection & message are misleading, since we support both action and function now. Could change to NoOperationFoundForCollection.```// now look for bindable actions...
View ArticleCreated Issue: When returning an Entity, the ETag header should also be set...
When querying an OData entity like Customers(1) the ETag should appear on the payload and additionally it should appear on the ETag response header field. Not having the value on the ETag response...
View ArticleCommented Issue: When returning an Entity, the ETag header should also be set...
When querying an OData entity like Customers(1) the ETag should appear on the payload and additionally it should appear on the ETag response header field. Not having the value on the ETag response...
View ArticleEdited Issue: When returning an Entity that contains an ETag annotation, the...
When querying an OData entity like Customers(1) the ETag should appear on the payload and additionally it should appear on the ETag response header field. Not having the value on the ETag response...
View ArticleCommented Unassigned: Action returning collection of complex type doesn't...
Action returning collection of complex type doesn't include count when using $inlinecount=allpages.Controller implementation:```[HttpPost]public PageResult<odata.TestItem>...
View ArticleCreated Issue: Rename GenerateSelfLink in LinkGenerationHelpers to...
There is only readlink no selflink in ODataV4, so need to rename it.
View ArticleClosed Issue: Unbound function should can be called in query option. [1630]
If below url is requested: ~/ConventionCustomers?$filter=WebStack.QA.Test.OData.UnBoundFunction.GetConventionCustomerNameById(CustomerId%3D407)%20eq%20'Name%207'Where ConventionCustomers is an entity...
View ArticleClosed Issue: ODataUriUtils.ConvertToUriLiteral does not support Enum [1608]
ODataUriUtils.ConvertToUriLiteral and ConvertFromUriLiteral do not support EnumPlease fix ```ConventionsHelpers.GetUriRepresentationForValue``` after Enum is supportedComments: The workaround code is...
View ArticleEdited Unassigned: ODataMetadataController needs renaming to support Side by...
Define the following services (With the v3 and the v4 assemblies):``` public static void Register(HttpConfiguration config){// Web API configuration and services// Web API routes...
View ArticleCommented Unassigned: ODataMetadataController needs renaming to support Side...
Define the following services (With the v3 and the v4 assemblies):``` public static void Register(HttpConfiguration config){// Web API configuration and services// Web API routes...
View ArticleEdited Unassigned: ODataMetadataController needs renaming to support Side by...
Define the following services (With the v3 and the v4 assemblies):``` public static void Register(HttpConfiguration config){// Web API configuration and services// Web API routes...
View ArticleCommented Unassigned: ODataMetadataController needs renaming to support Side...
Define the following services (With the v3 and the v4 assemblies):``` public static void Register(HttpConfiguration config){// Web API configuration and services// Web API routes...
View ArticleCreated Unassigned: Inheriting DefaultHttpControllerActivator [1713]
Currently you can inherit `System.Web.Http.Dispatcher.DefaultHttpControllerActivator` but can't override `Create()` because it [isn't...
View ArticleClosed Issue: BindRound method binds nullable double as decimal [1580]
BindRound method binds nullable double as decimal.``` private Expression BindRound(SingleValueFunctionCallNode node){ Contract.Assert("round" == node.Name); Expression[] arguments =...
View ArticleClosed Issue: For bound actions, the combination of action name and the...
In CSDL protocol 12.1.1.1: Bound actions support overloading (multiple actions having the same name within the same namespace) by binding parameter type. The combination of action name and the binding...
View ArticleClosed Issue: Only function/action import name used to call an unbound...
Currently, the following scenarios are working when calling an unbound action/function, for example: 1). ~/GetTopCustomer()2). ~/ContainerName.GetTopCustomer()3)....
View ArticleEdited Issue: It should report error for keyvalueParser to parse "Id=" and...
It is related to bug#1458. below should not be parsed successfully:1. abc=2. =abc
View ArticleCommented Issue: It should report error for keyvalueParser to parse "Id=" and...
It is related to bug#1458. below should not be parsed successfully:1. abc=2. =abcComments: Rename the title.
View Article