基于属性的编程有哪些优点?

发布于 2024-09-16 14:53:03 字数 246 浏览 8 评论 0原文

我正在使用 WCF RIA 服务,并且遇到了一个使用属性的示例:

[StringLength(10, ErrorMessage="Too long")]
public string FirstName { get; set; }
...

虽然属性不限于 WCF RIA,但它让我想起了一个问题:为什么声明性或基于属性的编程比编写验证例程“老式”更合适?方式” ?

谢谢,

斯科特

I am working with WCF RIA services and have come across a sample using attributes:

[StringLength(10, ErrorMessage="Too long")]
public string FirstName { get; set; }
...

While attributes aren't restricted to WCF RIA, it reminded me of a question: why is declarative or attribute based programming perferable to coding a validation routine "the old fashioned way" ?

Thanks,

Scott

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

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

发布评论

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

评论(4

锦欢 2024-09-23 14:53:03

因为无需执行代码即可发现约束。通过反思,您可以访问这些约束。

Because the constraint is discoverable without having to execute the code. With reflection you can access these constraints.

仅此而已 2024-09-23 14:53:03

最大的好处是可重用性。能够设置一次(名称、必需、正则表达式等),然后在 WCF 应用程序以及 MVC 应用程序中使用它,并且一切都保持一致,这真是太棒了。

The biggest benefit is re-usability. It's great to be able to set it once (Name, Required, Regex, etc) and then use it in your WCF app, as well as your MVC app, and everything stays consistent.

南笙 2024-09-23 14:53:03

这并不是说基于属性的编程优于“老式方式”验证。一般来说:

  1. 它看起来更干净(至少对我来说)
  2. 将属性放在方法/属性之上比找到放置代码验证的位置更容易

否则两种方法之间没有太大区别。

It's not that attribute based programming is superior than "old fashioned way" validation. In general:

  1. It looks cleaner (at least to me)
  2. It's a bit easier to slap attribute atop method/property than find place where to put code validation

Otherwise there is no big difference between both approaches.

撩发小公举 2024-09-23 14:53:03

使用属性时要考虑的一件事是,因为它们是可发现的,所以您可以使用它们来添加业务级客户端验证。

One thing to consider when using attributes is because they are discoverable you can use them to add business level client side validation.

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