sqlite core entity tutorial code example
Example: ef core entity framework sqlite cli
dotnet tool install --global dotnet-ef
dotnet add package Microsoft.EntityFrameworkCore.Design --version 3.1.*
dotnet add package Microsoft.EntityFrameworkCore.Sqlite --version 3.1.*
dotnet ef migrations add InitialCreate
dotnet ef database update