在客户端上扩展 WCF Ria 服务中的计算属性

发布于 2024-12-09 05:49:45 字数 271 浏览 0 评论 0原文

我有一个来自 WCF 服务的业务对象。我知道我可以通过 创建来扩展该业务对象客户端上的部分类。但是,是否可以扩展来自生成的业务对象的属性。例如,假设业务对象有一个名为 Name 的属性。我想要做的是,在客户端,用 [DisplayAttribute] 标记此属性。

任何帮助将不胜感激。

I have a business object that comes from a WCF service. I know that I can extend that business object by creating a partial class on the client. However, is it possible to extend a property that comes from the generated business object. For example, let's say that the business object has a property called Name. What I want to do is, on the client, to mark this property with the [DisplayAttribute].

Any help would be greatly appreciated.

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

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

发布评论

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

评论(1

裸钻 2024-12-16 05:49:45

从未将其用于属性,但当在服务器上编译时,我经常使用预编译器语句来隐藏 Silverlight/客户端代码。例如,通常这样做是为了在服务器端和客户端上获取 EntityState:

#if SILVERLIGHT
    using System.ServiceModel.DomainServices.Client;
#else
    using System.Data;
#endif

SILVERLIGHT 在客户端上定义,但不在服务器端项目上定义(条件编译符号 - 项目属性,构建选项卡)。

我还没有尝试过,但我想这可能适用于属性?

Never used it for attributes, but I often use the pre-compiler statements to hide Silverlight/Client side code, when it compiles on the server. For Example, this is often done to get to EntityState on both the server and client side:

#if SILVERLIGHT
    using System.ServiceModel.DomainServices.Client;
#else
    using System.Data;
#endif

SILVERLIGHT is defined on the client side, but not on the Server side projects (conditional compilation symbol - project properties, Build tab).

I haven't tried it, but I'm thinking this might work with attributes?

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