使用 wcf 服务参考类在 silverlight 中进行数据验证
你好, 我将 wcf 服务 与 silverlight 一起使用,我的数据契约类在参考文件中公开,并将类类型的集合绑定到数据网格,然后单击特定行来编辑整个行数据将绑定到数据表单,我必须验证字段,这里使用 IDataErrorInfo 接口进行验证,在服务参考文件中,该类是一个部分类并创建了一个新的 cs 文件具有相同的服务文件命名空间和类名,然后实现 IDataErrorInfo 接口属性
公共字符串 this[字符串 列名称]{}
在我编写验证的范围内。但它不起作用,任何人都可以为此提供帮助。 谢谢
HI,
Am using wcf service with silverlight and my datacontract class is exposed in the reference file and am binding a collection of class type to datagrid and while clicking a particular row for editing the entire row data will be binded to a dataform and there i have to validate the fields and here am using a IDataErrorInfo interface to validte,Here in service reference file the class is a partial class and created a new cs file with same namespace of the servicefile and class name then implemented the IDataErrorInfo interface properties
public string this[string
columnName]{}
in the scope i worte the validation .But it is not working can anyone help for this.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Silverlight 4 和 WCF 时,RequiredAttribute 和 DisplayAttribute 等数据注释不会传播到生成的客户端文件。
这是该问题的一种解决方案......
创建带有模型的类库(Model.dll)
示例
在服务项目中引用此类库
服务示例可以是...
创建一个 silverlight 类库 (SL.Model.dll)(该库具有在 Model.dll 中创建的示例模型)
在这个类库中添加现有项目作为链接并添加具有 Model.dll 的模型项目
在 Silverlight 应用程序中引用 SL.Model.dll
当服务引用创建视图时,检查重用类型(这是默认选项)
页面示例...
xaml代码...
控制的
data annotations like RequiredAttribute and DisplayAttribute etc do not propagated to the generated client side files when using Silverlight 4 and WCF.
This is one solution for the problem...
Create a class library with a model (Model.dll)
sample
In a services project reference this class library
a sample of services could be ...
Create a silverlight class library (SL.Model.dll) (this library have the sample model created in Model.dll)
in this class library add existing Item as link and add the model item that have Model.dll
in Silverlight Application reference the SL.Model.dll
when the services reference is create view that reuse types is cheked (It is deafault option)
sample of page ...
xaml
code of control ...