I'd like to perform an left join in this query.The query like: select ... from tableA left join tableB on tableA.Cola=tableB.Colb and tableB.Colc='some value'
I want to know how to perform the "and" condition,i try to coding like:
new SubSonic.Select().From("tableA").LeftOuterJoin ("tableB","Colb","tableA","Cola").AndExpression("Colc").IsEqualTo("some value")
but generated statement is not wanted.
Please give me some help.By the way,the version of subsonic is 2.1. I'm a beginner for use subsonic. Any help would be appreciated and sorry for my poor english,hope you can understand!