SELECT *
FROM table1 JOIN table2
ON table1.center BETWEEN table2.left AND table2.right
I’m new to LINQ, and I’ve seen that ‘join’ require an ‘equals’ keyword (instead of BETWEEN in my SQL). Perhaps I could override ‘Equals’ operator and create a new object of a LINQ query?
For things other than equals you put your join criteria in the where clause. It is similar to old style SQL where you start with a cartesian join and then filter on the where clause.