Tagged Questions
0
votes
1answer
403 views
PredicateBuilder + Join + VB.NET
I have a db that contains 3 tables
Products Table Suppliers Table Categories Table
Id Id Id
ProductName SupplierName ...
3
votes
1answer
1k views
Can PredicateBuilder generate predicates that span multiple tables?
I would like to dynamically generate predicates that span multiple tables across a Join in a Linq statement. In the following code snippet, I want to use PredicateBuilder or a similar construct to ...