Fluent NHibernate - 使用存储过程进行删除
我们已经实现了 Fluent NHibernate,但是在删除几个表的行时需要执行存储过程。
是否有办法在不创建命令对象并将其纳入会话事务的情况下完成此操作?
We've implemented Fluent NHibernate, but we have a need to execute a stored proc when deleting a row for a couple of tables.
Is there anyway to accomplish this without creating a command object and enlisting it with the session's transaction?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,可以在映射类构造函数中使用
SqlDelete(sprocName)
调用。Yes, this is possible using the
SqlDelete(sprocName)
call in your mapping class constructor.