DbSyncKit.DB
0.1.1
See the version list below for details.
dotnet add package DbSyncKit.DB --version 0.1.1
NuGet\Install-Package DbSyncKit.DB -Version 0.1.1
<PackageReference Include="DbSyncKit.DB" Version="0.1.1" />
paket add DbSyncKit.DB --version 0.1.1
#r "nuget: DbSyncKit.DB, 0.1.1"
// Install DbSyncKit.DB as a Cake Addin #addin nuget:?package=DbSyncKit.DB&version=0.1.1 // Install DbSyncKit.DB as a Cake Tool #tool nuget:?package=DbSyncKit.DB&version=0.1.1
DbSyncKit: Database Synchronization Library
The Sync library is a comprehensive suite of packages designed to simplify and streamline the process of data synchronization across multiple database platforms. It offers a range of tools, utilities, and interfaces to facilitate efficient and consistent data synchronization operations.
Introduction
Welcome to the Sync Library documentation! This comprehensive guide offers insights into the functionalities and usage of the Sync Library, a collection of packages designed to streamline and simplify the process of data synchronization across diverse database systems.
Overview of the Sync Library
The Sync Library comprises three primary packages: DbSyncKit.Core
, DbSyncKit.DB
, and DbSyncKit.MSSQL
, each serving distinct roles in enabling efficient data synchronization. Additionally, it anticipates future expansion with forthcoming packages, including DbSyncKit.MySQL
and DbSyncKit.PostgreSQL
, which are under development.
Package Descriptions
DbSyncKit.Core: This package forms the core functionality of the Sync Library, providing a robust set of tools and utilities for data synchronization tasks. It aims to optimize synchronization processes for efficiency and speed.
DbSyncKit.DB: As a foundational package, DbSyncKit.DB defines a set of interfaces and contracts to establish a consistent interaction layer across various database systems. It ensures a unified approach to database operations for seamless integration.
DbSyncKit.MSSQL: This specialized package offers tailored functionalities specifically for Microsoft SQL Server databases. It includes tools for query generation, connection management, and error handling optimized for MSSQL environments.
Future Packages: DbSyncKit.MySQL and DbSyncKit.PostgreSQL: These upcoming packages are dedicated to providing similar synchronization capabilities for MySQL and PostgreSQL databases, respectively. Although currently under development, they aim to align with the principles and features of the existing Sync Library packages.
Continue exploring this documentation to learn about installation procedures, usage examples, advanced configurations, FAQs, and more to leverage the Sync Library effectively in your projects.
Configuration and Setup
.NET Core Dependency Injection (DI)
To incorporate the synchronization functionalities provided by DbSyncKit.Core into your application, you can establish Dependency Injection (DI) within your project's Startup class.
Dependency Injection Setup:
Open your
Startup.cs
file and configure the DI container to register theSynchronization
andQueryGenerator
services:services.AddScoped<QueryGenerator>(); services.AddScoped<Synchronization>();
Utilizing
services.AddScoped
registers these services, allowing them to be injected into your application components as needed.Usage Example:
After registering in the DI container, you can inject these services into your classes or controllers:
using DbSyncKit.Core; private readonly Synchronization _sync; public YourServiceOrController(Synchronization sync) { _sync = sync; }
Incorporating these services via DI enables seamless integration of DbSyncKit.Core's synchronization features within your application architecture.
Usage Guide
Basic Synchronization
To perform basic data synchronization using the DbSyncKit.Core package, follow these steps:
Instantiate Synchronization:
using DbSyncKit.Core; // Instantiate the Synchronization class Synchronization _sync = new Synchronization(new QueryGenerator());
or with DI
using DbSyncKit.Core; private readonly Synchronization _sync; public YourServiceOrController(Synchronization sync) { _sync = sync; }
This creates an instance of the
Synchronization
class with aQueryGenerator
necessary for generating SQL queries.Create Database Instances:
using DbSyncKit.Core; // Instantiate source database connection IDatabase sourceDatabase = new Connection("(localdb)\\MSSQLLocalDB", "SourceChinook", true); // Instantiate destination database connection IDatabase destinationDatabase = new Connection("(localdb)\\MSSQLLocalDB", "DestinationChinook", true);
Replace
"(localdb)\\MSSQLLocalDB"
with your specific server address, and"SourceChinook"
and"DestinationChinook"
with the names of your source and destination databases, respectively. The last parametertrue
indicates the usage of integrated security for authentication. Adjust the parameters based on your authentication requirements.Entity Configuration Example (Album Entity):
To configure entities like the
Album
entity, apply attributes from theDbSyncKit.DB.Attributes
namespace to the entity class.using DbSyncKit.DB.Attributes; using DbSyncKit.DB.Extensions; using DbSyncKit.DB.Utils; using System.Data; [TableName("Album"), TableSchema("dbo")] public class Album : DataContractUtility<Album> { [KeyProperty(isPrimaryKey: true)] public int AlbumId { get; set; } public string Title { get; set; } public int ArtistId { get; set; } public Album(DataRow albumInfo) { // Initialization code for Album properties from DataRow } }
[TableName]
: Specifies the name of the table corresponding to this entity in the database.[TableSchema]
: Specifies the schema of the table.[KeyProperty]
: Defines a property as the primary key for the entity.
Available Attributes for Configuration:
[TableName]
: Specifies the name of the table.[TableSchema]
: Specifies the schema of the table.[KeyProperty]
: Defines a property as a key property.[ExcludedProperty]
: Excludes a property from specific operations.[GenerateInsertWithID]
: Controls the inclusion of the ID property in the insert query generation, allowing fine-tuning of insertion behavior.GenerateWithID
: Determines whether the ID property should be included in the insert query generation. Possible values aretrue
(to include the ID property) orfalse
(to exclude the ID property).IncludeIdentityInsert
: Indicates whether to include database-specific SQL statements during insert query generation affecting identity insert behavior. Default value istrue
.
Perform Synchronization for Specific Entity:
// Example: Synchronize data for a specific entity var entityData = _sync.SyncData<YourEntity>(sourceDatabase, destinationDatabase);
Replace
<YourEntity>
with the specific entity type you want to synchronize.sourceDatabase
anddestinationDatabase
should be instances of theIDatabase
interface representing your source and destination databases.Access Synchronization Results:
// Example: Access synchronization results for added, edited, and deleted records Console.WriteLine($"Added: {entityData.Added.Count} Edited: {entityData.Edited.Count} Deleted: {entityData.Deleted.Count}"); Console.WriteLine($"Total Source Data: {entityData.SourceDataCount}"); Console.WriteLine($"Total Destination Data: {entityData.DestinaionDataCount}"); // Retrieve SQL query generated during synchronization var query = sync.GetSqlQueryForSyncData(entityData); Console.WriteLine(query);
This snippet showcases how to access statistics related to added, edited, and deleted records, as well as the total counts of source and destination data. Additionally, it retrieves the SQL query generated during synchronization.
Repeat for Other Entities:
Repeat the synchronization process (steps 3-4) for other entity types as needed by replacing
<YourEntity>
with the desired entity type.Handle Errors:
Ensure to handle any exceptions that might occur during the synchronization process using appropriate error handling mechanisms.
Great! Here's the revised information:
Contribution Guidelines
Contributions to the DbSyncKit.Core, DbSyncKit.DB, and DbSyncKit.MSSQL packages are welcome! To contribute, follow these steps:
Fork the Repository: Fork the repository to your GitHub account.
Clone the Repository: Clone the forked repository to your local machine:
git clone https://github.com/RohitM-IN/DbSyncKit.git
Create a Branch: Create a new branch for your changes:
git checkout -b feature/your-feature-name
Make Changes: Make necessary changes in the codebase.
Commit Changes: Commit your changes and provide descriptive commit messages:
git commit -m "Add your descriptive message here"
Push Changes: Push your changes to your forked repository:
git push origin feature/your-feature-name
Create Pull Request: Create a Pull Request (PR) from your forked repository to the original repository.
Support and Contact Information
For any support, queries, or feedback regarding the DbSyncKit.Core, DbSyncKit.DB, and DbSyncKit.MSSQL packages, feel free to contact us:
- Email: support@rohit-mahajan.in
- GitHub Issues: Repository Issues
License Information
DbSyncKit.Core, DbSyncKit.DB, and DbSyncKit.MSSQL packages are licensed under the MIT License. For detailed information, refer to the LICENSE file in the repository.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net7.0
- No dependencies.
-
net8.0
- No dependencies.
NuGet packages (5)
Showing the top 5 NuGet packages that depend on DbSyncKit.DB:
Package | Downloads |
---|---|
DbSyncKit.Core
The core framework of DbSyncKit, offering essential functionalities for seamless data synchronization. Built with extensibility and flexibility in mind, DbSyncKit.Core forms the foundation for all DbSyncKit packages, ensuring a robust synchronization experience. |
|
DbSyncKit.MSSQL
Enhance MSSQL database interactions with DbSyncKit.MSSQL. This package extends DbSyncKit.DB, offering specialized features tailored for Microsoft SQL Server. Explore the package documentation for detailed functionalities and usage guidelines. |
|
DbSyncKit.MySQL
DbSyncKit.MySQL extends DbSyncKit.DB, offering MySQL-specific features for efficient data synchronization. Streamline your MySQL database interactions with DbSyncKit.MySQL. Explore its functionalities in the package documentation. |
|
DbSyncKit.PostgreSQL
Specialized package for PostgreSQL database integration in DbSyncKit. Enables efficient data synchronization tailored for PostgreSQL environments. |
|
DbSyncKit.SQLite
Enhance your SQLite database queries with DbSyncKit.Templates.SQLite. This package delivers templates for SELECT, INSERT, UPDATE, DELETE, and COMMENT queries, simplifying SQL operations for improved readability and efficiency. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
1.4.0.1 | 224 | 6/8/2024 | |
1.4.0 | 133 | 4/28/2024 | |
1.3.0 | 191 | 3/5/2024 | |
1.2.1 | 206 | 2/8/2024 | |
1.2.0 | 207 | 1/13/2024 | |
1.1.0.1 | 183 | 1/6/2024 | |
1.1.0 | 140 | 1/6/2024 | |
1.0.1 | 133 | 1/2/2024 | |
1.0.0 | 213 | 12/31/2023 | |
0.4.0 | 162 | 12/25/2023 | |
0.3.0 | 154 | 12/24/2023 | |
0.2.1 | 194 | 12/23/2023 | |
0.2.0 | 167 | 12/18/2023 | |
0.1.2 | 177 | 12/12/2023 | |
0.1.1 | 148 | 12/12/2023 | |
0.1.0.2 | 142 | 12/11/2023 | |
0.1.0 | 150 | 12/11/2023 |