删除字符串中的\
将select * from table where 序号='"+id+"'存储至sql2008表中,取出后变为select * from table where 序号='\"+id+\"',请问高手如何将“\”删除掉,谢谢 --------------------编程问答-------------------- string str = "select * from table where 序号='" + id + "'";用这样的方式应该不会自动加“\”的,你怎么区出来的? --------------------编程问答-------------------- string sql = @"select * from table where 序号='"+id+"'"
字符串前面加个‘@’看下可不可以 --------------------编程问答-------------------- 我将那个语句作为一个字符串,存入nvarchar,用datatable取出时,监视显示带有| --------------------编程问答-------------------- sql在数据中自动添加了转译符
补充:.NET技术 , 非技术区