您好我在数据网格视图中使用了一个视图表(带有触发器,因此它可以添加和更新),我想在这个数据网格中编辑或添加新行,所以我创建了这个insertCommand
http://i.imgur.com/IEh9PKM.png
所以我可以像这样插入
http://i.imgur.com/dfQ2ucV.png
使用此代码:
conjoints_BS.EndEdit()
'Me.ViewMariageTableAdapter.InsertQuery(id,,,)
Me.ViewMariageTableAdapter.Update(Me.AgentDB_DataSet.viewMariage)
Me.ViewMariageTableAdapter.Fill(Me.AgentDB_DataSet.viewMariage)
但我想要' PERSONNEID_H'由代码手动提供
我尝试使用其他注释的InsertQuery而不是Update方法,但我无法找到如何将datagrid中的最后一个条目作为参数提供给它。
请帮帮我