IDbConnector.cs 281 B

12345678910
  1. using System.Data;
  2. using System.Threading.Tasks;
  3. namespace MediaBrowser.Server.Implementations.Persistence
  4. {
  5. public interface IDbConnector
  6. {
  7. Task<IDbConnection> Connect(string dbPath, bool isReadOnly, bool enablePooling = false, int? cacheSize = null);
  8. }
  9. }