错误 - “SelectCommand”不是表适配器的成员

时间:2012-03-01 02:47:25

标签: vb.net tableadapter selectcommand

使用此代码,我收到一条错误消息,指出'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成为表适配器的成员吗?

1 个答案:

答案 0 :(得分:2)

将表适配器的属性“GenerateDirectDBMethods”更改为True。现在将自动生成更新,删除等命令。