RIA 服务和 EF 验证

发布于 2024-10-16 00:41:33 字数 221 浏览 1 评论 0原文

我正在使用实体框架和 RIA 服务开发 Silverlight 应用程序。当我创建 RIA 服务时,我可以选择生成元数据类以进行基本验证。

我可以直接使用 EF 进行的验证与使用 RIA 服务生成的元数据类中的验证之间有什么区别?我的意思是,如果我在 EF 模型中有一个不为 null 的属性,我不需要在元数据类中将其标记为 [Required]...是因为这已经由 EF 模型完成了吗?

谢谢!

I'm developing a Silverlight application with Entity Framework and RIA Services. When I create the RIA Service I have the option to generate a metadata class for basic validation.

What is the difference between the validation I can do directly with EF and the one in the metadata class generated with RIA service? I mean, if I have a property in the EF model which is not null, I don't need to mark it in the metadata class as [Required]... Is it because this is already done by the EF model??

THANKS!

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

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

发布评论

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

评论(1

不奢求什么 2024-10-23 00:41:33

使用元数据类,您可以向实体添加更多验证逻辑。有关更多详细信息,请参阅命名空间 System.ComponentModel.DataAnnotations 。 EF 目前仅支持Required 属性。命名空间提供更多属性,例如 RangeAttribute、StringLength 或您为自己的验证逻辑定义的自定义属性。

Jeff Handly 有一系列很好的博客文章,描述了验证过程以及 WCF Ria 服务中的元素。

With the metadata classes you can add more validation logic to your entities. See the namespace System.ComponentModel.DataAnnotations for more details. EF currently only supportes the Required attribute. The namespace provides more attributes, such as RangeAttribute, StringLength or custom attributes that you define for your own validation logic.

Jeff Handly has a good series of blog post, that describe the validation process and elements in WCF Ria Services.

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