apazureck / odatatools

OData Tools for vscode
24 stars 12 forks source link

OrderBy does not work #28

Open rhilliges opened 6 years ago

rhilliges commented 6 years ago

Using OrderBy attaches " undefined" to request instead of "$oderby=...".

apazureck commented 6 years ago

Workaround for now:

Missing brackets. Please replace in template proxy.ot line 83: this.addToQuery("$orderby=" + property + order ? " " + order : ""); with this.addToQuery("$orderby=" + property + (order ? " " + order : ""));