Flter expanded table with breeze
问题 I am using in my project angular, breeze, WebApi, EF, SqlServer2008. I have table Articles and table ArticleComments, So one article can have many articleComments records. public class Article{ public int ArticleId { get; set; } public string ArticleName { get; set; } public string Description { get; set; } public ICollection<ArticleComment> Comments { get; set; } public ICollection<ArticleImage> ImagesList { get; set; } ... } public class ArticleComment { public int ArticleCommentId { get;