在 silverlight 应用程序中更新服务参考不起作用。请帮忙!
我正在构建一个 silverlight LOB 应用程序,它使用 RIA 服务和普通的 .ASMX 服务。
数据是使用实体框架连接的。
我有 1 个实体,我最近将一对多关系添加到一个新的集合中 但是,在普通服务中,即使在更新、删除和重新创建 silverlight 应用程序中的服务引用之后,它也使用完全相同的对象
使用 RIA 服务,我可以在我的 silverlight 应用程序中通过以下方式实现这一点:
instanceOfEntity.NewEntities
上下文类。 .该财产仍然没有被暴露..
有人Plleeaeeeeease告诉我如何通过这项服务让这个该死的东西出现!
谢谢
丹尼尔
I'm building a silverlight LOB application which uses both RIA services and a vanilla .ASMX service..
The data is wired up using entity framework..
I have 1 entity which i recently added a 1 to many relationship to a collection of a new type of object..
Using RIA services i can get to that in my silverlight application fine by saying:
instanceOfEntity.NewEntities
However in the vanilla service which is using the exact same object context class even after updating, deleting and recreating the service reference in the silverlight application.. the property is still not being exposed..
Someone Plleeaeeeeease tell my how i can get this dang thing to show up via this service!
Thanks
Daniel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最终切换到 WCF 服务。
似乎工作正常,
不确定这是否是普通 ASMX 服务的限制?
Ended up switching to a WCF service instead..
Seems to work fine,
Not sure if this is a limitation in vanilla ASMX services?