是否可以将同步框架与实体框架结合起来?

发布于 2024-08-17 15:50:56 字数 121 浏览 4 评论 0原文

在开始(重新)设计我的应用程序之前,我想事先知道:是否可以将同步框架与实体框架结合起来?我们计划仅使用 SQL Server(目前)。

是否存在任何已知问题?

感谢您的回复。

巴特

Before I start (re)designing my app, I would like to know beforehand: is it possible to compbine the sync framework with the Entity Framework? We are planning to use SQL Server only (for now).

Are there any known issues?

Thanks for your reply.

Bart

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

挽梦忆笙歌 2024-08-24 15:50:56

由于同步框架仅将数据同步到本地 SQL Server 实例,因此针对它运行实体框架应该不会出现问题。

Since the Sync Framework merely syncs your data to a local SQL Server instance, there should be no issue running the Entity Framework against it.

咋地 2024-08-24 15:50:56

当然,同步框架可以在数据库之间移动数据。您选择如何访问本地数据库取决于您。我的应用程序在客户端使用实体框架来访问 SQL Compact 3.5 数据库。这里不允许使用存储过程,因此实体框架给了我这种能力。在服务器端,我仍然使用由存储过程填充的更传统的数据集,因为 SQL 服务器更擅长数据操作。

所以,是的,可以进行MX 和匹配。

Sure, The Sync framework moves data between databases. How you choose to access your local database is up to you. I have applications that use the Entity framework on the client side to access a sql compact 3.5 database. Theres no Stored procs allowed here so the Entity framework gives me that power. On the server side I still use more traditional datasets populated by stored procs because the SQL server is better at data manipulation.

So, yes, can mx and match.

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