使用此代码,我收到一条错误消息,指出'SelectCommand'不是StudentsTableAdapter的成员。
Dim cmd As New SqlCommand("SELECT * FROM Students WHERE ID=@ID", myConnection)
cmd.Parameters.AddWithValue("@ID", 5)
Me.StudentsTableAdapter.SelectCommand = cmd
Me.StudentsTableAdapter.Fill(Me.StudentsDataSet.Students)
连接对象就是这个:
Dim ObjConnection As New SqlConnection(My.Settings.SelimiyeMasjidConnectionString)
您能告诉我如何使SelectCommand成为表适配器的成员吗?
答案 0 :(得分:2)
将表适配器的属性“GenerateDirectDBMethods”更改为True。现在将自动生成更新,删除等命令。