On creating an ASP.NET MVC project on Visual Studio 2017 community version, the project does not contain an app.db file(and doesn't use SQLite by default). On the other hand while creating the same type of project through the dotnet cli by using the following command: dotnet new mvc --auth Individual -o myMvcApp creates an app.db file and uses the SQLite database by default.
Is there any way in which I can add an SQLite database to the existing solution(project) in Visual Studio? How can I make this process default?