Beispiel #1
0
 public Task <IDbConnection> Connect(string dbPath)
 {
     return(SqliteExtensions.ConnectToDb(dbPath, _logger));
 }
Beispiel #2
0
 public Task <IDbConnection> Connect(string dbPath, bool isReadOnly, bool enablePooling = false, int?cacheSize = null)
 {
     return(SqliteExtensions.ConnectToDb(dbPath, isReadOnly, enablePooling, cacheSize, _logger));
 }