Silverlight 域服务 - 删除验证
如何使用Silverlight + Domain Service + EF执行约束验证
Table1是主表Table1
是Table2中的FK
我需要在删除Table1时验证Table2没有与Table1相关的记录。
我 Table2 有相关记录然后抛出异常。
是否可以?
How can I perform constraint validations with Silverlight + Domain Service + EF
Table1 is a primary table
Table1 is a FK in Table2
I need to validate when deleting Table1, that Table2 has no records related with Table1.
I Table2 has records related then throw an exception.
Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的 DomainService 中,只需在删除方法上添加一个验证属性,
然后在验证方法中做任何您想做的事情
就可以了!
In your DomainService, just add a validation attribute on the delete method,
and then do whatever you want in the validation method
enjoy !