如何使用 silverlight wcf ria 服务防止表中出现重复条目
我正在使用下面的链接开发一个示例应用程序。
http://code.msdn.microsoft.com/Getting-Started-WCF -RIA-1469cbe2。
正如链接中提到的,它是一个使用 wcf ria 服务的 silverlight 业务应用程序。
在示例中,在添加新员工时,如果员工“职称”字段在数据库中是唯一的,并且用户尝试输入重复的职称,我该如何防止呢?我的意思是,如果输入两个相同的“标题”,它应该正确验证。在当前情况下我该如何做到这一点?我正在使用子窗口添加新员工...
有人可以帮忙吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用一个 CustomValidation 来解决您的问题,我认为这是最好的方法,因为您可能会或可能不会在客户端加载所有记录,并且如果您没有加载所有员工,您需要去数据库进行检查如果有一个标题被输入...
基本上会像这样:
首先创建将负责员工验证的类
,然后创建实际执行验证的方法:
在由域服务生成的元数据上雇员类搜索 title 属性,您必须添加此标签:
注意:所有这些都必须在服务器端完成...
您可以在此处找到有关 WCF 验证的更多信息:
http://www.silverlightshow.net/items/WCF-RIA-Services-Part-6-Validating-Data.aspx
这是 Jeff Handley 写的另一篇关于 WCF 验证的非常好的文章:
http://jeffhandley.com/archive/2010/09/25/RiaServicesCustomValidationMethods.aspx
You can solve your problem using one CustomValidation, and i think its the best way since you may or may not have all records loaded on the client side, and in the case you dont have all employes loaded you need to go to the DB to check if there is one with the title beeing inputed...
Basically it would go like this:
First Create the Class that's going to be responsible for the Employees Validation
then the method that will actually do the Validation:
On the metadata generated by your domainservices in the Employee class search for the title property and you have to add this tag:
Note: All this must be done on the server side...
You can find more information about WCF Validations here:
http://www.silverlightshow.net/items/WCF-RIA-Services-Part-6-Validating-Data.aspx
Here is another very well written article by Jeff Handley on WCF validations:
http://jeffhandley.com/archive/2010/09/25/RiaServicesCustomValidationMethods.aspx