-
Type: New Feature
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: V4.0_ERRATA02
-
Fix Version/s: V4.01_WD01
-
Component/s: Protocol
-
Labels:
-
Environment:
Simplified Syntax;[Proposed]
-
Proposal:
The public comment [c201412e00001] (https://lists.oasis-open.org/archives/odata-comment/201412/msg00001.html) with title "Parameter implicit aliasing" suggests to add a short-hand notation for parameter aliases, e.g.
GET http://<serviceroot>/Add()?a=1&b=1
instead of the currently necessary
GET http://<serviceroot>/Add(a=@a,b=@b)?@a=1&@b=1.