The .NET backend for Azure Mobile Services makes it easy to expose related tables via Entity Framework. However, related entities are not returned by default - for example, if you retrieve the list of orders from your orderController, it will not return the order items unless you explicitly ask for it. The way to request related entities is done via the OData $expand query operator
In this article I will walk through a sample showing how to retrieve related entities from client and service
Setup data models with 1:n relationship on the service Go to the complete details ...