EntityFramework-Reverse-POCO-Code-First-Generator
EntityFramework-Reverse-POCO-Code-First-Generator copied to clipboard
SQLite >> int to INTEGER
Our testing requirements requires us to use SQLite.
However, when generating the model, certain database types, like int should become "INTEGER"; ie for AUTOINCREMENT (ie IDENTITY columns);
Would it possible to support SQLite ?
Hi @bobbyangers I will definitely add support for SQLite. Seems to be fairly straight forward as most of it is already there from the SQL Server implementation. I'm currently adding support for .Net 5 and EFCore5.
If you want to make it work now, take a look at:
- #505
- The types set in
SqlServerToCSharp