Tagged Questions
0
votes
2answers
736 views
How to implement outer join expression tree?
I need to implement the query using expressions syntax (because I don't know types in compile time). For example query like this one:
from customer in Customers
join purchase in Purchases
on ...