将 Sync Framework 与 WCF 数据服务结合使用
我在服务器端和客户端都有 SQL Server 2008 R2 版本。我正在使用两个 WCF 数据服务通过实体框架连接到它们。我想使用同步框架同步这两个数据库,我该怎么做?
I have both SQL Server 2008 R2 edition on both Server and Client side. And I am using two WCF Data service to connect to them via Entity Framework. I wanted to sync these two Db using sync framework, how can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Sync Framework 不与 EF 或 WCF 数据服务集成。如果您使用 Sync Framework,则需要直接在 EF 和 WCF 数据服务外部建立与数据库的直接连接。
请参阅:教程:同步 SQL Server 和 SQL Express< /a>
Sync Framework doesnt integrate with EF or WCF Data Service. If you use Sync Framework, it will need to establish direct connections to the databases directly outside EF and WCF Data Service.
see: Tutorial: Synchronizing SQL Server and SQL Express
这不是真的。您可以在 EF 上的提供程序之间设置同步。这是理论上的。我正在通过实现 FullEnumerationSimpleSyncProvider 来进行 iy 工作。除了错误处理之外,一切正常。
如需与 WCF 集成,请查看此处:WCF 4.0 和 WCF 4.0同步框架2.0 &实体框架 4.0 和ASP.NET MVC 2.0 和 ASP.NET MVC 2.0自动生成的代码
This is not true. You can setup a synchronisation between to provider on EF. This is theorical. I'm working on iy by implementing a FullEnumerationSimpleSyncProvider. Everything works fine except error handling.
For integration with WCF go and have a look here: WCF 4.0 & Sync Framework 2.0 & Entity Framework 4.0 & ASP.NET MVC 2.0 & auto generated code