Skip to content Skip to sidebar Skip to footer

How To Select The Data By Unicode Where Condition?

I would like to get the data base on following SQL Statement and that was located in TableAdapter. SELECT * FROM Student WHERE Chinese_Name = @Param Example code call from C# is l

Solution 1:

Your c# code should be slightly different. Use verbatim string literal.(msdn)

    GetDataByChinese_Name(@"你好");

Post a Comment for "How To Select The Data By Unicode Where Condition?"