更改实体后,Silverlight 项目中的域数据源未更新
我有一个 Silverlight 项目,它通过域服务/实体框架访问数据。我对数据库进行了更改,然后更新了 EDMX,然后删除并重新创建了域服务。我可以在 DomainServiceName.metadata.cs 文件中看到新添加的属性。
但我一生都无法弄清楚如何在 Silverlight 项目中刷新数据源。我已经重新编译、删除了 DomainContext 文件并重新生成了它,但 Silverlight 端的对象没有新属性。
I have a Silverlight project that is accessing data via a Domain Service/Entity Framwork. I made a change to the database, I then updated teh EDMX, and then deleted and recreated the Domain Service. I can see the newly added properties in the DomainServiceName.metadata.cs file.
But I cannot for the life of me figure out how to get the data source to refresh in the Silverlight project. I have recompiled, deleted the DomainContext file and regenerated it, but the objects on the Silverlight side to not have the new properties.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我创建了一个临时 RIA 项目,并用它来重新制作域服务,并刚刚提取了我需要的代码。虽然不是最佳选择,但它使我不必手动键入所有元数据和服务方法。
I created a temp RIA project and used it to remake the Domain Service and just lifted the code that I needed. Not optimal but it saved me from having to manually type all of the metadata and service methods.