Select from following answers:- http://localhost:12345/Northwind.svc/Customer('ALFKI')

- http://localhost:12345/Northwind.svc/Customer/ALFKI
- http://localhost:12345/Northwind.svc/ALFKI
- All Above
To access a Customer entity by key, the correct URI is http://localhost:12345/Northwind.svc/Customer('ALFKI'). The entities set name is given as a relative path and the key is given as a parenthesized parameter.
The URI http://localhost:12345/Northwind.svc/ALFKI is incorrect. The entity set name must be included as part of the URI.
Show Correct Answer
Source: MeasureUp.com | |
Alert Moderator