I'm using dotConnect for SQLite 5.1.26 with Entity Framework 6.0.1 Code-First
Devart SQLiteConnectionStringBuilder class creates my connection string like that
Code: Select all
var sb = new SQLiteConnectionStringBuilder();
sb.DataSource = databasePath;
sb.FailIfMissing = true;
return sb.ToString();
But in runtime I get an exceptionData Source=d:\\TABLES\\Database.db;FailIfMissing=True
What is incorrect in my code?Keyword not supported: 'failifmissing'
BTW. You can easily get this exception in you append ;FailIfMissing=True to the connection string in my code sample, attached to this my post
UPDATE With today's release 5.1.36 the result is the same..