|
Can anyone tell me what version of the .NET framework (CLR and BCL) is req'd for the recently-released MS Sync Framework (for support of occasionally-connected-applications)?
Its listed as Sync Framework V1 for ADO.NET v2.0 but none of its listed req'...
Started by sbohlen on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
....
Sync Services for ADO.NET 2.0 requires ADO.NET 2.0 on the server.
You get everything you need for Sync within the Sync namespaces, and I think that those are not dependent on any 3.0 or 3.5 language features.
On the 2.0 CLR.
|
|
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
Started by Bart Roozendaal on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Sure, The Sync framework moves data between the Entity framework....
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.
|
|
I've tried to get a solution for the above said question from MSDN Social and other resources from Microsoft. I was specifically looking for offline scenarios where client come online only to fetch updates from the Server.
There are plenty of articles...
Started by Raj on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I did the following to get Sync Framework working using WCF with SQL Server 2008
Enabled Change Tracking in SQL Server 2008 Enabled change tacking for tables participating in the Sync Added SqlExpressClientSyncProvider available from....
|
Ask your Facebook Friends
|
The regular code snippet of syncing data with sync framework is this:
LocalDBSyncAgent syncAgent = new LocalDBSyncAgent(); Microsoft.Synchronization.Data.SyncStatistics syncStats = syncAgent.Synchronize();
Do anynody knows a way to sync a subset of my...
Started by ArielBH on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Create a SyncTable for each table you want to sync, and add.
", "Sharp Bikes")); } }
There are some new database related sync providers in Sync Framework 2.0Yes, you absolutely can.
|
|
I am looking for resources on Microsoft Sync Framework. Although MSDN and Google Search gave me the brief overview, I want some demos and presentations.
Also, is Live Mesh based on Sync Framework?
Started by Manoj on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Framework Basics S QL Express - Client Synchronization Sample Sync Services for ADO.NET v2 - Download Only Sync Sync Services for ADO.NET Adapter Builder Live Mesh isn't based on the Sync Framework, although....
|
|
Hi I'm looking for a commercial/open source backup library in C++.
I have seen the Microsoft sync Framework but unfortunatly it requires the .net framework to be installed...
Thank you Jonathan
Started by Jonathan Weizman on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Want a complete backup (rather than sync) codebase, use the source of rdiff-backup..
|
|
Hi All,
I am planning to use the following architecture for one of the applications: Client: Java based application, which will use a MySQL database Server: Will be C# based and the database will be SQL Server
Now is it possible to use Microsoft Sync ...
Started by Ngm on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
First off, I'm not familiar with Sync, but a quick read for the Sync runtime to obtain the data....
The Java Native Interface will get you a good start .
You will need to find some "glue" between the Java and the Sync framework.
|
|
I have mobile application, so i dont want to send/receive whole changes in tables..Just some data, that meets some filter terms. Is it possible to achieve with SF; if it is, please provide some resources to read about it, because i found almost nothing...
Started by nihi_l_ist on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For example....
Yes its possible.
I'm not familiar with Sync Framework but SSRS subscriptions appear in the Sync Center, so my assumption is that Sync Framework uses SSRS.
Fields, and even apply filters to the publication.
|
|
We are investigating using the Microsoft Mobile Sync Framework and I would like to put together a quick prototype. I am trying to pitch Mobile Sync Framework ofer another sync provider. I have zero experience with it so far, so I am looking for good examples...
Started by Thomas on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
See here: http://stackoverflow.com/questions/239150/sync-framework-resources
Hope that thread helps.
|
|
What I have found on the 'net seems a little ambiguous whether or not something needs to be installed on the server to use the Sync Framework with SQL Server 2005.
My interpretation is no, that the ADO.NET'ness of the product reaches out to the server...
Started by rusty on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Hi rusty,
As far as I know, SQL Server 2005 does not need the Microsoft Sync Framework installed Tracking or Triggers etc), you will not need to install any Sync Framework components on the SQL Server machine to be able to ....
|