SyncData_dotNET 1.1.7

There is a newer version of this package available.
See the version list below for details.
dotnet add package SyncData_dotNET --version 1.1.7
NuGet\Install-Package SyncData_dotNET -Version 1.1.7
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SyncData_dotNET" Version="1.1.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SyncData_dotNET --version 1.1.7
#r "nuget: SyncData_dotNET, 1.1.7"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SyncData_dotNET as a Cake Addin
#addin nuget:?package=SyncData_dotNET&version=1.1.7

// Install SyncData_dotNET as a Cake Tool
#tool nuget:?package=SyncData_dotNET&version=1.1.7

#DOCS SyncData is a framework for Bi-Directional Synchronization in .NET applications.

Supported platforms:

  • .NET Framework 3.5, 4, 4.5, 4.6 & 4.7

Example: class Program { private static readonly ClientSync Sync = ClientSync.GetClientSync();

    static void Main(string[] args)
    {
		// Tables involved in the sync process:
        var tables = new string[] { "anagrafica" };

        string server = "localhost";
        string database = "pwdmanager";
        string username = "root";
        string password = "toor";

		string clientConnectionString = Constants.FILEDB;
		string serverConnectionString = @"Data Source=" + server + "; Database=" + database + "; User ID=" + username + "; Password=" + password + ";";

        // Create 2 Sql Sync providers

        // Sqlite Client provider for a MySql <=> Sqlite sync
        SQLiteConnection clientProvider = new SQLiteConnection(clientConnectionString);

        // MySql Server provider, the master.
        MySqlConnection serverProvider = new MySqlConnection(serverConnectionString);

        // Sync orchestrator
        Sync.Synchronize(clientProvider, serverProvider, tables);
        String[] error = Sync.getError();
        if (error != null && error.Length > 0)
        {
            Console.WriteLine(error[0] + " " + error[1]);
        }

        // Write results
        Console.WriteLine("Result: " + Sync.getResult());
    }
}
Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.0 611 10/9/2020
1.2.1 582 12/21/2019
1.2.0 512 12/15/2019
1.1.9 494 7/13/2019
1.1.8 491 7/7/2019
1.1.7 524 7/6/2019
1.1.6 530 7/6/2019
1.1.5 514 7/6/2019
1.1.4 495 7/6/2019
1.1.3 500 7/6/2019
1.1.2 490 7/6/2019
1.1.1 489 7/6/2019
1.1.0 523 7/5/2019
1.0.0 489 6/26/2019

Awesome application SyncData utility.