EntityFramework-Reverse-POCO-Code-First-Generator icon indicating copy to clipboard operation
EntityFramework-Reverse-POCO-Code-First-Generator copied to clipboard

SQLite >> int to INTEGER

Open bobbyangers opened this issue 4 years ago • 1 comments

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 ?

bobbyangers avatar Jan 01 '21 13:01 bobbyangers

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

sjh37 avatar Jan 02 '21 13:01 sjh37