我想基於子實體的集合來過濾實體。這裏是我的實體(EF POCO的):如何篩選Breeze JS中的子資產集合?
public class Customer
{
public int Id { get; set; }
public string Name { get; set; }
public ICollection<Order> Orders { get; set; }
}
public class Order
{
public int Id { get; set; }
public string Description { get; set; }
}
使用微風JS我想回到這裏任何Order.Description包含單詞「富」的所有客戶。我想象中的查詢類似於此:
query = entityQuery.from('Customers')
.where("Orders.Description", "contains", "foo");
當然是行不通的,但。有任何想法嗎?
微風現在支持這樣的場景:http://www.breezejs.com/documentation/query-examples#凡在相關屬性條款 – robasta 2013-10-15 07:35:39