public OutboxPersisterTests(BuildSqlVarient sqlVarient)
 {
     this.sqlVarient = sqlVarient;
     dbConnection = GetConnection();
     persister = new OutboxPersister(sqlVarient.Convert(),
         connectionBuilder: dbConnection,
         tablePrefix: $"{nameof(OutboxPersisterTests)}_");
 }
 public TimeoutPersisterTests(BuildSqlVarient sqlVarient)
 {
     this.sqlVarient = sqlVarient;
     dbConnection = GetConnection();
     persister = new TimeoutPersister(
         connectionBuilder: dbConnection,
         tablePrefix: $"{nameof(TimeoutPersisterTests)}_",
         sqlVarient:sqlVarient.Convert());
 }