Cleaned up ModelBase, enable writing to sqlite

This commit is contained in:
Mark McDowall 2013-03-23 22:50:51 -07:00 committed by kay.one
parent 70e6c3081b
commit aeebae33fd
1 changed files with 1 additions and 0 deletions

View File

@ -28,6 +28,7 @@ namespace NzbDrone.Core.Datastore
connectionString = GetConnectionString(dbPath);
}
OrmLiteConfig.DialectProvider = new SqliteOrmLiteDialectProvider();
var dbFactory = new OrmLiteConnectionFactory(connectionString);
return dbFactory.Open();
}