nHibernate安全删除

发布于 2024-08-19 19:19:32 字数 159 浏览 5 评论 0原文

有什么方法可以检查从表中删除记录是否安全?

例如:

daoStudent.Delete(id);

如果它有任何子记录,则不会抛出异常,但我希望如此。我可以采取其他行动,例如让学生不活跃。

Is there any way to check if it is safe to delete record from table ?

for example :

daoStudent.Delete(id);

doesn't throw exception if it has any child records , but I would like it to. I could take other actions like making student inactive.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那伤。 2024-08-26 19:19:32

我明白了,

SomeStudentRelation.HasItems()

检查它是否有任何子记录。

I got it ,

SomeStudentRelation.HasItems()

to check if it has any child records.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文