Im using subsonic 2.1
I have 2 tables and i am joining them with 2 columns
How do i do inner join in select query.
to be more precise how do i do same with subsonic what im doing in below query.
select * from table1 t1
inner join table2 t2
on t1.col1 = t2.col1 and t1.col2 = t2.col2
thanks.
SP