字典Ria 服务不支持。您知道如何将其暴露给客户端应用程序吗?
我的一个类有一个属性:
Dictionary<int, MyObject>
我收到错误,表明它不受支持。有没有办法通过 Ria 服务公开字典?
One of my class has a property:
Dictionary<int, MyObject>
I get the error that it is unsupported. Is there a way to expose Dictionary via Ria service?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建一个 System.ObjectModel.KeyedCollection然后将通过电线传递。由于某种原因,序列化器不支持字典,
You can create a System.ObjectModel.KeyedCollection<int, MyObject> which will then be passed over the wire. For some reason the serializer doesn't support Dictionaries,
谷歌是你的朋友。 ;o)
它看起来你不能在这里使用复杂类型。
Google is your friend. ;o)
It looks like you cannot use complex types here.