Benchmarkr.SQLite.Benchmark.OpenDB C# (CSharp) Method

OpenDB() public method

public OpenDB ( ) : IDisposable
return IDisposable
        public override IDisposable OpenDB()
        {
            this.connection = new SQLiteConnection(this.Path);
            this.connection.CreateTable<Employee>();
            return this.connection;
        }