Browse Source

removed parameter substitution from ComplexFormulae SQL generation

frogsoftware 10 months ago
parent
commit
a3b362056b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      inabox.database.sqlite/SQLiteProvider.cs

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

@@ -2026,7 +2026,7 @@ public class SQLiteProvider : IProvider
         switch (baseCol)
         {
             case IComplexColumn complexCol:
-                fieldmap[baseCol.Name] = LoadComplexFormula(command, type, prefix, fieldmap, tables, columns, complexCol.Formula, useparams);
+                fieldmap[baseCol.Name] = LoadComplexFormula(command, type, prefix, fieldmap, tables, columns, complexCol.Formula, false);
                 break;
             case IColumn col:
                 var property = DatabaseSchema.Property(type, col.Property);