Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想获取位于 TableAdapter 中的以下 SQL 语句的数据库。
SELECT * FROM Student WHERE Chinese_Name = @Param
来自 C# 的示例代码调用是这样的。
GetDataByChinese_Name('你好');
但我不知道应该将N前缀放在该语法中的哪个位置。通常,我们可以得到
SELECT * FROM Student WHERE Chinese_Name = N'你好'
这边走。
您的 c# 代码应该略有不同。使用逐字字符串文字。( msdn )
GetDataByChinese_Name(@"你好");