소스 검색

Fix to Filter bug

Kenric Nugteren 8 달 전
부모
커밋
f24b97c506
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      inabox.database.sqlite/SQLiteProvider.cs

+ 1 - 1
inabox.database.sqlite/SQLiteProvider.cs

@@ -1825,7 +1825,7 @@ public class SQLiteProvider : IProvider
     private string GetFilterClauseNonGeneric(Type T, SQLiteCommand command, char prefix, IFilter? filter, List<Tuple<string, string, string, string>> tables,
         Dictionary<string, string> fieldmap, List<string> columns, bool useparams)
     {
-        if (filter == null || filter.Property.IsNullOrWhiteSpace())
+        if (filter == null)
             return "";
 
         var result = "";