The past way:
string sql = "";
sql += "select * from xxx";
sql += "where 1=1";
sql += "and xxx ='xxx'";
sql += "where 1=1";
sql += "and xxx ='xxx'";
上述方式雖然現在VS2015可以用CTRL+左鍵平行選取,但是尾巴的 "; 並無法排除。
The other way:
string sql = @"select * from xxx
where 1=1
and xxx= 'xxx'";
第二個方式一樣可以斷行排版,並且可以減少取出SQL拿到sql development時,移除字串如:";
就看情況作使用哩。
沒有留言:
張貼留言
問題沒有大小或好壞