aqueduct
aqueduct copied to clipboard
Use multiple query condition after join
i want use another where condition on card. can i do that in this situation ?
final cardQuery = Query<User>(context)
..join(set: (u) => u.card)
.where((x) => x.product)
.identifiedBy(productId);