为什么我们应该在asp.net的sql查询之前编写@?

时间:2010-10-01 04:52:06

标签: asp.net verbatim

假设我们要从数据库中选择数据,然后我们为此编写查询。

示例:

SqlConnection con=new SqlConnection(Connetion name)
string selectPkId = @"SELECT PK_ID FROM TABLE"
SqlCommand cmd=new SqlCommand(selectPkId ,con);

所以,我的问题是为什么我们基本上在sql查询之前使用@。如果我之前没有使用@那么它再次正常工作(不会给出任何错误),那么使用“@”需要什么?请告诉我。

1 个答案:

答案 0 :(得分:7)

这是一个逐字字符串。这意味着保留换行符并忽略转义序列:

string a = "hello, world";                  // hello, world
string b = @"hello, world";               // hello, world
string c = "hello \t world";               // hello     world
string d = @"hello \t world";               // hello \t world
string e = "Joe said \"Hello\" to me";      // Joe said "Hello" to me
string f = @"Joe said ""Hello"" to me";   // Joe said "Hello" to me
string g = "\\\\server\\share\\file.txt";   // \\server\share\file.txt
string h = @"\\server\share\file.txt";      // \\server\share\file.txt

MSDN参考:String Literals

当您希望保留转义序列而不必双重转义序列时,这会派上用场,例如:

string sql = @"UPDATE table SET comment='Hello\nWorld'"
// equivalent to:
string sql = "UPDATE table SET comment='Hello\\nWorld'"

当然这是一个非常简单的例子,但大多数时候它会给你一个更易读的字符串。