I'am currently evaluating your SQLite provider...
Unfortunately, I am not able to create the SQLite database as following:
Code: Select all
            
            SQLiteConnectionStringBuilder builder = new SQLiteConnectionStringBuilder();
            builder.DataSource = "D:\\test.db";
            // Does not have any effect...
            builder.FailIfMissing = false;
            var connection = builder.ToString();
            DataContext context = new DataContext(connection);
            System.Data.Entity.Database.DefaultConnectionFactory = new SQLiteConnectionFactory();
            context.Database.Create();