소스 검색

Fixed mysql dashboard query bug

master
Savorboard 5 년 전
부모
커밋
e7f11d22b8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/DotNetCore.CAP.MySql/IMonitoringApi.MySql.cs

+ 1
- 1
src/DotNetCore.CAP.MySql/IMonitoringApi.MySql.cs 파일 보기

@@ -88,7 +88,7 @@ select count(Id) from `{0}.received` where StatusName = N'Failed';", _prefix);

if (!string.IsNullOrEmpty(queryDto.Content))
{
where += " and Content like '%@Content%'";
where += " and Content like CONCAT('%',@Content,'%')";
}

var sqlQuery =


불러오는 중...
취소
저장