Procházet zdrojové kódy

Fixed SQL content filter on IMonitoringApi.PostgreSql.cs

master
Mateus Viegas před 3 roky
rodič
revize
e10658063e
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/DotNetCore.CAP.PostgreSql/IMonitoringApi.PostgreSql.cs

+ 1
- 1
src/DotNetCore.CAP.PostgreSql/IMonitoringApi.PostgreSql.cs Zobrazit soubor

@@ -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";


Načítá se…
Zrušit
Uložit