匿名类型的 WCF 服务中的请求错误

发布于 2024-11-05 00:51:06 字数 193 浏览 1 评论 0原文

WCF 服务是否可以返回匿名类型的实例,或者它们是否需要是一个类?我的服务返回 JSON 供网站使用。如果从 MVC 获取一个页面并返回类似的内容并让服务自动将其序列化为 JSON,那就太好了。

return new { user = data, lastUpdate = time, success = true };

Can a WCF service return an instance of an anonymous type or do they need to be a class? My service returns JSON for the website to consume. It would be nice to take a page from MVC and just return something like this and have the service automatically serialize it into JSON.

return new { user = data, lastUpdate = time, success = true };

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

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

发布评论

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

评论(1

旧伤慢歌 2024-11-12 00:51:06

永远不能从任何方法返回匿名类型的对象。不会,并且会发生很多有用的事情。

该问题并非 WCF 特有。在 WCF 中,情况会变得更糟,因为 WCF 必须担心从服务契约生成元数据。请记住,服务协定不是决定返回 JSON 的部分,因此 WCF 无法为此特定方法执行任何特殊操作。

You can't ever return an object of an anonymous type from any method. Not and have much useful happen with it.

The problem is not specific to WCF. It just gets worse in WCF since WCF has to worry about generating metadata from your service contract. Remember that the service contract isn't the part that decides to return JSON, so WCF can't do anything special for this particular method.

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