Hi there,
Working my way through Breeze and very impressed so far.
I was wondering if its possible to use a combination of Take / Expand in a query for example...
var query = new entityModel.EntityQuery()
.from("Customers").where("CustId", "==", "1").expand("Orders").take(500);
var query = new entityModel.EntityQuery()
.from("Customers").where("CustId", "==", "1").select().expand("Orders").take(500);
var query = new entityModel.EntityQuery()
.from("Customers").where("CustId", "==", "1").take(1).expand("Orders").take(500);
I've tried a combination of the above without any luck, I just want a top level Customer object and a list of limited Orders
Hope you can help!