Hi,
I am new with SubSonic and have a problem with query. This is my query string
string sql = "SELECT *" +
" FROM tbl_exrates, tbl_currency" +
" WHERE date = " + d;
" AND tbl_exrates.currency = tbl_currency.cid" +
" AND (cash > 0 OR transfer > 0 OR sell > 0)";
How to convert it to SubSonic Query string ? Does SS have function support to do that ?
Thanks !