Explorar el Código

[readme] updated

Exilon hace 4 años
padre
commit
42ba94beee
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  1. 6 1
      README.md

+ 6 - 1
README.md

@@ -817,12 +817,17 @@ Serialize/Deserialize object from/to Yaml.
 
 **Quick.Expression:**
 --
- Evaluate object properties using expressions.
+ Evaluate object properties or single values using expressions.
 ```delphi
   if TExpressionParser.Validate(user,('(Age > 30) AND (Dept.Name = "Financial")') then
   begin
     //do something
   end;
+
+  if TExpressionParser.Validate(user,('(20 > 30) OR (5 > 3)') then
+  begin
+    //do something
+  end;
 ```
 
 **Quick.Linq:**