是否可以将同步框架与实体框架结合起来?
在开始(重新)设计我的应用程序之前,我想事先知道:是否可以将同步框架与实体框架结合起来?我们计划仅使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于同步框架仅将数据同步到本地 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.
当然,同步框架可以在数据库之间移动数据。您选择如何访问本地数据库取决于您。我的应用程序在客户端使用实体框架来访问 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.