phnx47 / dapper-repositories

CRUD for Dapper
MIT License
659 stars 203 forks source link

How to define SqlProvider #311

Closed alexanlp closed 11 months ago

alexanlp commented 11 months ago

How to define SqlProvider for this example?

public class UserRepository : DapperRepository<User>
{
    public UserRepository(IDbConnection connection, ISqlGenerator<User> sqlGenerator)
        : base(connection, sqlGenerator)
    {

    }
}