//TODO evaluate if it's needed protected override string SelectStarTop1(string table) => $"select top 1 * from {table}";

        protected override IDbConnection ConnectionFactory()
        {
            return(new SqlConnection(AbsenceTracker.GetConnectionString("MSSQLServerConnectionString")));
        }
Exemple #2
0
        //TODO evaluate if it's needed protected override string SelectStarTop1(string table) => $"select * from {table} fetch first 1 rows only";

        protected override IDbConnection ConnectionFactory()
        {
            return(new NpgsqlConnection(AbsenceTracker.GetConnectionString("PostgreSQLHerokuConnectionString")));
        }