I have 3 tables, Customer, Surfboards, and CustomerSurfboards. CustomerSurfboards is the Joiner table.
Customer CustomerSurfBoards Surfboards
---------- ------------------- ------------
CustomerID CustomerSurfboardID SurfBoardID
IsActive CustomerID
SurfboardID
I want to select all surfboards where the customer IsActive = true
And I need to do this in Linq using C#