I have the following model:
Products (DbSet<Product>) ProductHasWidgets (DbSet<ProductHasWidget> many-to-many w/ payload) Widgets (DbSet<Widget>)
I am getting stuck with querying across and/or from the many-to-many table and have two questions:
How do I write a breeze query to return all Products where:
Widget.IsActive == trueProductHasWidgets.WidgetId == 1