Select from following answers:- http://localhost:12345/Northwind.svc/GetOrdersByCity?city='Redmond'

- http://localhost:12345/Northwind.svc/GetOrdersByCity('Redmond')
- http://localhost:12345/Northwind.svc/GetOrdersByCity/city/Redmond
- All Above
To retrieve the entities returned by the GetOrdersByCity service operation for the city Redmond, specify the GetOrdersByCity service operation name as a relative path and specify city='Redmond' as a query string parameter.
The URI http://localhost:12345/Northwind.svc/GetOrdersByCity('Redmond') is incorrect. Service operation parameters must be given as query string parameters.
Show Correct Answer
Source: MeasureUp.com | |
Alert Moderator