Is it possible to combine the Sync Framework with the Entity Framework?
Before I start (re)designing my app, I would like to know beforehand: is it possible to compbine the sync 开发者_如何学Cframework with the Entity Framework? We are planning to use SQL Server only (for now).
Are there any known issues?
Thanks for your reply.
Bart
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.
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.
精彩评论