数据注释 Silverlight

发布于 2024-09-15 09:55:00 字数 202 浏览 5 评论 0原文

我有一个向 silverlight 项目提供数据(发布者对象)的 Web 服务。

我想将发布者绑定到数据表单并让数据表单句柄进行验证。

我想通过使用 DataAnnotations 来实现这一点。

我的问题是.. 我可以或者如何修改 Publisher 对象(由网络服务生成)以添加 DataAnnotations

谢谢 斯普

I have a webservice that supplies data (Publisher Object) to a silverlight project.

I want to bind the Publisher to a dataform and have the dataform handle to validation.

I would like to achive this by using DataAnnotations.

My question is..
Can I or how do you amend the Publisher object (Generated by the webservice) to add the DataAnnotations

Thanks
Sp

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

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

发布评论

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

评论(1

赠佳期 2024-09-22 09:55:00

标记您绑定到 DataForm 的任何类。

如果这是一个 WCF Web 服务,并且您将 DataContract 类对象绑定到 DataForm,则可以将数据注释添加到已使用 [DataMember](在您的情况下为 Publisher 对象)注释的 DataContract 类成员。如果您仅将 DataContract 类用作 DTO,则在 Silverlight 端标记更丰富的类。

Markup whatever class that you bind to the DataForm.

If this is a WCF web service and you bind the DataContract class objects to your DataForm, you can add the data annotations to your DataContract class members which are already annotated with [DataMember](Publisher object in your case). If you use the DataContract classes only as DTOs then markup the richer class on the Silverlight side.

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