Just wondering what the correct syntax is to add a related field to the select statement. Example. All employees have a department, which is set in the departmentID field in the Employee table. What is the OData selection syntax if I want to drop all employees but only want to show their names FirstName and DepartmentName. I thought it would be something like http://example.com/odata.svc/Employees ? $ Select = FirstName, + Department.DepartmentName
source
share