I'm using the SQLite.net provider and VS Entity Designer to design and code against a sqlite database. At present, a model sqlite database is checked in to the source tree.
However, this is binary which is inconvenient for use with a revision control system.
I'd like to check in a serialized version using sqlite's .dump, but am not sure what the steps would be to achieve the following:
- A serialized form of the model database is checked in to the tree.
- When the solution is opened or updated from the source control system, the SQLite database used by the designer is automatically updated.
- Changes to the database from the database designer update the serialized version.
Are there a set of custom build steps that would make this relatively seamless? Thanks,