ASP.net 对象数据源
是否可以在 ObjectDatasource 中为插入和更新保留相同的方法名称?
我正在使用 Save() 方法进行插入和更新。但是 ObjectDataSource 会触发 Update 但不会 火插入。
Is it possible to keep the same Method name for both insert and update in ObjectDatasource?
I am using Save() method for insert and update.But ObjectDataSource fires Update but does not
fire insert.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。如果将 InsertMethod 和 UpdateMethod 设置为相同的例程,则应该可以正常工作。
希望这有帮助!
Yes, this is possible. If you set the InsertMethod and UpdateMethod to the same routines, this should work fine.
Hope this helps!