فهرست منبع

Fix to Filter bug

Kenric Nugteren 6 ماه پیش
والد
کامیت
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 = "";