1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

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

View File

@ -28,6 +28,7 @@ public IDbConnection Create(string dbPath = null)
connectionString = GetConnectionString(dbPath);
}
OrmLiteConfig.DialectProvider = new SqliteOrmLiteDialectProvider();
var dbFactory = new OrmLiteConnectionFactory(connectionString);
return dbFactory.Open();
}