Example #1
0
 public IEnumerable <TEntidade> Obter(string sqlString, object objectParams)
 {
     using (_Contexto = _Conexao.GetOpenConnection())
     {
         return(_Contexto.Query <TEntidade>(sqlString, objectParams, commandType: CommandType.Text));
     }
 }