Skip to content

Commit

Permalink
Merge pull request #2 from DbSyncKit/feature/SQLite
Browse files Browse the repository at this point in the history
Added Support for SQLite
  • Loading branch information
RohitM-IN authored Apr 28, 2024
2 parents 5ab5dc1 + 4bcb7de commit e9cad0b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/DbSyncKit.DB.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<FileVersion>1.3.0.0</FileVersion>
<Version>1.3.0.0</Version>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<FileVersion>1.4.0.0</FileVersion>
<Version>1.4.0.0</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://dbsynckit.rohit-mahajan.in/</RepositoryUrl>
<PackageProjectUrl>https://github.com/RohitM-IN/DbSyncKit</PackageProjectUrl>
Expand Down
3 changes: 3 additions & 0 deletions src/Factory/QueryGeneratorFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ public IQueryGenerator GetQueryGenerator(DatabaseProvider provider)
case DatabaseProvider.PostgreSQL:
namespacePrefix = "DbSyncKit.PostgreSQL";
break;
case DatabaseProvider.SQLite:
namespacePrefix = "DbSyncKit.SQLite";
break;
// Add cases for other providers as needed
default:
throw new ArgumentException("Unsupported database provider", nameof(provider));
Expand Down

0 comments on commit e9cad0b

Please sign in to comment.