1

I'm trying to run sqlite in memory to run my integration tests against the database. But I keep getting error message mentioning the tables are not created by code first. I did not find any clue mentioning sqlite ef6 nuget package can or can not do this. If not, what would be other options you recommend for in memory databases. I would be thankful if you help.

Alex
  • 274
  • 5
  • 15

1 Answers1

1

Check the answer at : Entity Framework 6 with SQLite 3 Code First - Won't create tables


Btw, there is a nuget package available for SQLite : Here

To Install package :

Install-Package System.Data.SQLite.EF6 
Community
  • 1
  • 1
Parimal Raj
  • 20,189
  • 9
  • 73
  • 110