Explorar el Código

Fixed SQL content filter on IMonitoringApi.PostgreSql.cs

master
Mateus Viegas hace 3 años
padre
commit
e10658063e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/DotNetCore.CAP.PostgreSql/IMonitoringApi.PostgreSql.cs

+ 1
- 1
src/DotNetCore.CAP.PostgreSql/IMonitoringApi.PostgreSql.cs Ver fichero

@@ -81,7 +81,7 @@ namespace DotNetCore.CAP.PostgreSql

if (!string.IsNullOrEmpty(queryDto.Group)) where += " and Lower(\"Group\") = Lower(@Group)";

if (!string.IsNullOrEmpty(queryDto.Content)) where += " and \"Content\" ILike concat('%',@Content,'%')";
if (!string.IsNullOrEmpty(queryDto.Content)) where += " and \"Content\" ILike @Content";

var sqlQuery =
$"select * from {tableName} where 1=1 {where} order by \"Added\" desc offset @Offset limit @Limit";


Cargando…
Cancelar
Guardar