-
I need to sync between Sql database and Sqlite local Cache file |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
which way it is from MSSQL to SQLite or other way around ? its possible to do so if the interface for SQLite is implemented if you want to convert from MSSQL to SQLite Edit: also I may have partial implementation for SQLite its just that only data sync is possible as our future plans are to make schema sync possible too but for SQLite we gave up on that part still give me this sat & sun I will update my old implementation and publish the NuGet package @Psychac share some light on metadata sync if its possible to make the schema sync part we may have discussed this I will open another discussion for this lets talk there ref: DbSyncKit/DbSyncKit#22 |
Beta Was this translation helpful? Give feedback.
-
I recommend you check feature/SQLite branch I have added my old code which surprisingly didn't break the code and passed my test for getting same amount of changes compared to other still I will do some more testing on sat |
Beta Was this translation helpful? Give feedback.
-
The package has been added to NuGet DbSyncKit.SQLite you can use IDatabase SourceDatabase = new DbSyncKit.MSSQL.Connection("(localdb)\\MSSQLLocalDB", true, "SourceChinook");
IDatabase DestinationDatabase = new DbSyncKit.SQLite.Connection(Path.Combine("Path", "to", "destinationChinook.sqlite")); checkout the Cross DB Migration doc here |
Beta Was this translation helpful? Give feedback.
The package has been added to NuGet DbSyncKit.SQLite
you can use
checkout the Cross DB Migration doc here