C# – Management of a SQLite database with EF
In a previous post, we saw how to create and manage a SQLite database using C# with System.Data.SQLite, writing the SQL statements by hand.In this post, we will build the same application, but using Entity Framework Core with a Code First approach and LINQ.The idea is simple: instead of writing SQL, we describe our model… Read More: C# – Management of a SQLite database with EF »