SQLite in ASP.NET Core with EntityFrameworkCore
问题 How do you add and use an SQLite database in an ASP.NET Core web application, using EntityFramework 7 ? I dived into ASP.NET Core the moment I heard about it and created my first web application, I suddenly had a bunch of data that I wanted to store and SQLite seemed like the obvious choice. Since I wanted it to stay with my application, keep it lightweight, simple and avoid setting up a separate database. So how would one go about creating an SQLite database in ASP.NET Core? ASP.NET Core -