Keyword not supported: 'failifmissing' exception with dotConnect 5.1.36 and EF 6.0.1 Code-First
Posted: Thu 14 Nov 2013 05:40
Hello.
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
So finally I have following connection string
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..
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..