I'm Trying to work with SQLITE database using visual studio 2013. I have installed System.Data.SQLite (x86/x64) 1.0.92 to visual studio. And installed the Setups for 64-bit Windows (.NET Framework 4.5) as well.
Problems
It gives me and exception when i'm trying to create database using code first.
SQL logic error or missing database no such table: ****
Cannot create Entity Data Model using existing database. No provider is there to create connection. So Cannot Use Model First
- Cannot Create data connection. There is no SQLITE provider. Cannot Use DB First within visual studio
Success Scenario
- I can create SQLITE database manually(outside visual studio) and connect to the database and read/write/delete data using Entity Framework/ Manual coding.
Is there any way to overcome above problems.