DeepakGowda L
это возможно
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<connectionStrings>
<add name="Default" connectionString="Data Source=|DataDirectory|\DBBHC.db" providerName="System.Data.SQLite" />
</connectionStrings>
переместите свою БД в папку app_data и используйте
using (SQLiteConnection conn = new SQLiteConnection(LoadConnectionString()))
{
var output = conn.Query<string>("select * from ProjectLists", new DynamicParameters());}