Quantcast
Channel: ASPNETWebStack Issue Tracker Rss Feed
Viewing all articles
Browse latest Browse all 7215

Commented Issue: metadata uri (json light) is missing $select clause [1107]

$
0
0
Spec here on the metadata url - http://docs.oasis-open.org/odata/odata/v4.0/csprd01/part1-protocol/odata-v4.0-csprd01-part1-protocol.html#_Toc355089421

Issue:
GET ~/Customers?$select=Name

Expected:

```
{
"odata.metadata":"http://localhost/$metadata#Customers&$select=Name","value":[
{
"Name":"Raghu"
}
]
}
```

Actual:

```
{
"odata.metadata":"http://localhost/$metadata#Customers","value":[
{
"Name":"Raghu"
}
]
}
```
The metadata URL describes the content of the payload and is really important in json light.
Comments: [Fixed](https://aspnetwebstack.codeplex.com/SourceControl/changeset/a35d9185e8500641894e2689b41fe9971113961a).

Viewing all articles
Browse latest Browse all 7215

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>