Hi @ChrisI,
Invoke Data Source method can return both collection or single item. For example getOrders() will return IEnumerable<Order> and getOrderById() will return Order. You can get single item from collection of items using for example FirstOrDefault(). Additionally you can appy $filter parameter for getOrders() to limit the records returned as collection. Once you have the item you want you can access any property.


