首页 > 代码库 > C#里面sql语句前面加@符号的用法

C#里面sql语句前面加@符号的用法

例如:

string sql="select * "
+ "from table1 "
+“where id=1"



加上@符号:
string sql=@"select * 
from table1
where id=1"

 

C#里面sql语句前面加@符号的用法