Perform a select and expand in the same query with breeze is not supported
问题 I develop an asp.net solution with Durandal/breeze. Here is my code to get all my shippers: var query = EntityQuery.from('Shippers') .select('id, name, street, city'); return manager.executeQuery(query) .then(querySucceeded) .fail(queryFailed); Here is the related model: public class Shipper { [Key] public int Id { get; set; } public string Name { get; set; } public string Street { get; set; } public string Number { get; set; } public City City { get; set; } } public class City { public int