如何在服务器和客户端之间同步复杂的域对象结构
是否有在具有模块化结构的客户端(WPF、PRISM、MVVM)和服务器(WCF 服务和 NHibernate 用于在数据库中持久化)之间同步分层域对象的最佳实践?
已经有用于传输的 DTO 对象和用于带有回调管理基础设施的服务器请求的单独模块。
提前致谢=)
阿列克谢
Are there any best practices for syncing hierarchical domain objects between client with modular structure (WPF,PRISM,MVVM) and server(WCF service and NHibernate for persistence in DB)?
Already have DTO objects for transport and separate module for server requests with callback management infrastructure.
Thanks in advance=)
Alexey
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要查看Microsoft 同步框架。
尽管其主要实现似乎集中在 ADO.NET 和关系数据的同步上,但 Sync Framework 支持任何类型的对象的同步,包括您自己的自定义对象。
您还可以选择要同步的协议,因此如果您想使用 WCF 等协议,它也可以工作。
然而,它确实需要您或您做一些工作。
You may want to take a look at the Microsoft Sync Framework.
Although its main implementation seems to focus on ADO.NET and synchronization of relational data, the Sync Framework supports synchronization of any type of object, including your own custom objects.
You can also choose the protocol over which you want to synchronize, so if you'd like to use e.g. WCF, it will work too.
It does, however, require some work or your behalf.