WCF 数据服务:如何返回自定义类对象
您好,我想从 wcf 数据服务返回自定义类对象。
我的要求是我有一个 A 类,其中包含一些属性以及其他 B 类的列表属性。 我想返回b类的对象。
请帮忙
Hi i want to return a custom class object from wcf data service.
my req is that i have a class A which contains some property along with a list property of other class B.
i want to return the object of class b.
plz help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果服务器上的数据作为内存中的类,则可以使用反射提供程序将它们公开为 WCF 数据服务:http://msdn.microsoft.com/en-us/library/dd723653.aspx
If you have the data on the server as in-memory classes, you can use reflection provider to expose them as WCF Data Service: http://msdn.microsoft.com/en-us/library/dd723653.aspx