-10

我收到此编译错误消息。我该如何解决?

错误 28“WindowsFormsApplication1.SqlCommand”不包含“Parameters”的定义,并且找不到接受“WindowsFormsApplication1.SqlCommand”类型的第一个参数的扩展方法“Parameters”(您是否缺少 using 指令或程序集引用?) C:\Users\cofex\Desktop\Gestion de salair - pompier - ARAB - 复制 - Copy\Gestion de salair - pompier - ARAB - 复制 - Copy\WindowsFormsApplication1\Classes\employeurclass.cs 152 26 WindowsFormsApplication1

在此代码上:

SqlCommand command = new SqlCommand (query, _connection); // Form1.connection.Open(); 
command.Parameters.AddWithValue("@N_Securite_Social", N_Securite_Social);
command.Parameters.AddWithValue("@N_CCP", N_CCP); 
4

1 回答 1

6

添加

using System.Data;
using System.Data.SqlClient;

命名空间到您的文件

于 2012-05-07T10:41:04.113 回答