SubSonic3 SimpleRepository 中的添加和更新有什么区别?
SubSonic3 SimpleRepository 中的 IRepository.Add 和 IRepository.Update 有什么区别?
What is the difference between IRepository.Add and IRepository.Update in SubSonic3 SimpleRepository?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Add 应该执行 sql Insert,而 Update 应该执行 sql Update。所以 Add 用于新对象,即没有分配主键值。
Add should perform a sql Insert whereas Update should perform a sql Update. So Add is for new objects i.e. without a primary key value assigned.
Add 返回对象,其中 Update 是一个整数。
Add returns objects, where as Update is an integer.