您可以选择与 Sync Framework 同步的列吗
我注意到,使用 MS Sync,通过向导创建将执行同步的 WCF 服务,您只能选择要同步的表。
是否可以只同步表的几列而不同步整个表?它还将创建具有整个表结构的本地 sdf 文件。我只需要在我的移动设备中显示表格的几列。
I notice that with MS Sync, going through the wizard to create the WCF service that will do the sync, you can only choose which table to sync.
Is it possible to only sync a few columns of the table and not the entire table? It will also create the local sdf file with the whole table structure. I only need a few columns of the table to be displayed in my mobile device.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过编写代码来实现这一点。您可以使用 DbSyncTableDescription
第二个参数是要包含在同步中的列名称的集合。
希望有帮助
You can achieve this by writing code. You can use the DbSyncTableDescription
The second parameter is the collection of Column Names you want to include in Sync.
Hope that helps
同步框架是一个可定制和可扩展的框架,因此它肯定可以完成。但您可能必须编写一些代码 - 我不知道框架中包含的数据库同步提供程序仅支持同步列的子集。
The Sync Framework is a customizable and extensible framework hence it can surly be done. But you probably have to write some code - I am not aware that the database synchronization provider included in the framework supports synchronizing only a subset of the columns.