您可以选择与 Sync Framework 同步的列吗

发布于 2024-09-01 10:52:27 字数 125 浏览 4 评论 0原文

我注意到,使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

或十年 2024-09-08 10:52:27

您可以通过编写代码来实现这一点。您可以使用 DbSyncTableDescription

DbSyncTableDescription tableDescription = SqlSyncDescriptionBuilder.GetDescriptionForTable(tableName, Collection<Columns>, server Connection)

第二个参数是要包含在同步中的列名称的集合。

希望有帮助

You can achieve this by writing code. You can use the DbSyncTableDescription

DbSyncTableDescription tableDescription = SqlSyncDescriptionBuilder.GetDescriptionForTable(tableName, Collection<Columns>, server Connection)

The second parameter is the collection of Column Names you want to include in Sync.

Hope that helps

韶华倾负 2024-09-08 10:52:27

同步框架是一个可定制和可扩展的框架,因此它肯定可以完成。但您可能必须编写一些代码 - 我不知道框架中包含的数据库同步提供程序仅支持同步列的子集。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文