-
-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[document enhancement] compare with Microsoft.EntityFrameworkCore.Sqlite? #166
Comments
Back then there was full Framework and Entity Framework 6. EF 6 didn't (and still does not AFAIK) offer Code First for SQLite. Long story short: Maintaining this lib do not take much time (updating dependencies from time to time, answering few questions and merge some PRs) and I plan to continue as long as it is useful for somebody. I edited my answer on Stack Overflow to state this and I'm also going to update the README of this repo. Here we go: |
thanks for your quick reply, and contiouns effort to maintain this repo! |
I just tried .net framework 4.8(netstandard2.1) and works well with ef core 3.x code first. |
The readme doesn't mention the initial motivation to create the project. I'm a curious is it because there's no sqlite code first at that time? From commit history I noticed the oldest file was created 7 years ago. Maybe there's no other EF sqlite adapters at that time? I also found the stackoverflow answer refering this repo.
Now there's
Microsoft.EntityFrameworkCore.Sqlite
, with which one can create sqlite code first way.While this repo is really excellent, people may feel hard choosing between the two.
So still any advantage using
SQLite.CodeFirst
?One of the possible difference might be:
SQLite.CodeFirst
is usingSystem.Data.SQLite
, whileMicrosoft.EntityFrameworkCore.Sqlite
usesMicrosoft.Data.Sqlite
.The text was updated successfully, but these errors were encountered: