I want to do a JOIN with LINQ using an OR statement.
Here is the SQL query I\'m starting with:
SELECT t.id FROM Teams t INNER JOIN Games g ON (g
The where clause applies a boolean condition, so using "||" is the way to go. You can chain multiple where clauses but I believe that will give you a "and" operation, rather than an "or".