我使用聯查詢在asp.net,但問題是我現在不如何使用正後綴正確PLS指導插入SQL Server中的Unicode字符....如何使用在線查詢
cn.Open();
SqlCommand cmd = new SqlCommand("insert into newsactivity VALUES(@newstitle, @newsdetails ,@dated,@type)",cn);
cmd.Parameters.AddWithValue("@newstitle",txtnewstitle.Text);
cmd.Parameters.AddWithValue("@newsdetails",N'txtnewsdetails.Text');
當您正在使用的參數設置,然後'SqlDbType'到'NVarChar'應足夠好 – V4Vendetta