Quino einthält eine einfache Sprache für Ausdrücke welche innerhalb der Applikation verwendet werden kann um Filter oder Bedingungn zu erstellen. Es ist auch Möglich Werte aus dem Daten Kontext und von Funktionen zu zuzugreifen. (context data and functions.)
Basistypen
Type | Beispiel | XML |
---|---|---|
Ganze Zahlen |
| |
Dezimalzahlen |
| |
Dezimalzahlen (hohe Präzision) |
| |
null - Konstante |
| |
Boolsche - Konstanten |
| |
Einfache Zeichenkette mit '' |
| |
Alternative Zeichenkette mit ““ |
| Nicht zulässig. Hier müssen die einfachen Hochkommas verwendet werden. |
Liste |
|
Operatoren
Vergleichsoperatoren
Die folgenden Operatoren vergleichen zwei Werte. Die Operatoren machen am meisten Sinn für numerische Vergleiche. Jedoch sind auch Vergleiche mit anderen Typen möglich.
Operator | XML | Beschreibung | Beispiel | Resultat |
---|---|---|---|---|
| Gleich |
| Wahr | |
| Nicht gleich |
| Falsch | |
|
| Grösser als |
| Falsch |
|
| Kleiner als |
| Falsch |
|
| Grösser als oder gleich |
| Wahr |
|
| Kleiner als oder gleich |
| Wahr |
String Operatoren
Die folgenden Operatoren können für Zeichenketten verwendet werden. CI
referenziert dabei auf Case Insensitive. Die anderen Methoden berücksichtigten Gross-/Kleinschreibung.
Operator | Synonym | Beschreibung | Beispiel | Resultat |
---|---|---|---|---|
|
| Startet mit |
| Wahr |
|
| Endet mit |
| Wahr |
|
| enthält |
| Wahr |
|
| Gleich* |
| Wahr |
|
| Nicht gleich* |
| Falsch |
|
| Startet mit* |
| Wahr |
|
| Endet mit* |
| Wahr |
|
| Enthält* |
| Wahr |
Arithmetische Operatoren
Für arithmetische Funktionen stehen folgende Operatoren zur Verfügung:
Operator | Beschreibung | Typen | Beispiel | Resultat |
---|---|---|---|---|
| Multiplikation | Numerisch |
| 4 |
| Division | Numerisch |
| 1 |
| Addition | Numerisch, DateTime, TimeSpan |
| 4 |
| Subtraktion | Numerisch, DateTime, TimeSpan |
| 0 |
| Potenz | Numerisch |
| 8 |
| Modulo | Numerisch |
| 1 |
Boolsche Operatoren
Folgende “verbindende” Operatoren stehen zur Verfügung:
Operator | XML | Beschreibung | Beispiel | Resultat |
---|---|---|---|---|
|
| und |
| Falsch |
| oder |
| Wahr | |
| nicht |
| Falsch |
Regular Expressions
Operator | Synonym | Beschreibung | Beispiel | Resultat |
---|---|---|---|---|
|
| matches regular expression |
| true |
|
| matches regular expression CI |
| true |
See regular expressions for more information.
Null-handling
Use the following operators to test for and handle null values.
Operator | Synonym | Beschreibung | Typen | Beispiel | Resultat |
---|---|---|---|---|---|
|
| unary IS NULL | Any | ?null | true |
|
| unary IS NOT NULL | Any | !?null | false |
|
| Null-coalescing | Any | null ?? 2 | 2 |
Type-casting
The type-cast operator allows an application to transform the type directly. Any number with a decimal point is automatically a floating-point number. Use the m
suffix to make it the money type instead. For some other common types, there are standard functions that are more flexible than type-casting (see custom dates and time functions and custom Guid functions).
Operator | Beschreibung | Typen | Beispiel | Resultat |
---|---|---|---|---|
| Type-cast | Typename, Any | (int)value | value (w/type 'int') |
A product can create expressions that return specific types using the MetaType, as shown in the examples below.
Example | .NET Type of result |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
A product can also use any available, fully-qualified .NET type name, as shown in the examples below.
Example | Result |
---|---|
(System.DayOfWeek)5 |
|
(System.DateTime)"2020-01-01 12:00:00" |
|
(System.TimeSpan)"15:14:13" |
|
Lists
Use the following operators with lists.
Operator | Beschreibung | Typen | Beispiel | Resultat |
---|---|---|---|---|
| Containment | Any | Array | 1 in [1,2,3] |
Several of the operators above can be applied to all elements of a list using a list operator. For example, the expression [+::1,1,2,3]
evaluates to 1 + 1 + 2 + 3
.
The following operators work with lists:
&&
||
#
+
-
*
^
Operator Precedence
Operator precedence is enforced with staggered productions in the grammar and consists of five precedence levels (from most-binding to least):
Level | Operators |
---|---|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
The following examples show how precedence affects expressions and how to use parentheses to change the precedence.
Example | Result |
---|---|
|
|
|
|
|
|
|
|
Identifiers
Any text not contained in quotes and adhering to the following rules is an identifier that refers to data in the context in which the expression is evaluated.
An identifier:
Includes one or more letters (a-z or A-Z), digits (0-9) or underscores
Starts with at least one letter
For the programmers, the following snippets are from the official grammar:
ID : LETTER (LETTER|DIGIT|'_')*; fragment DIGIT : '0'..'9'; fragment LETTER : ('a'..'z'|'A'..'Z');
Function calls
The function-call and indexing syntax is also relatively standard.
Type | Example |
---|---|
Function calls |
|
Indexed calls |
|
The namespace is always required, except for functions defined in the Global
namespace.
For example, Global.EndOfTime()
and EndOfTime()
are equivalent.
See the list of standard functions and custom functions for more examples.
Chaining
Identifiers can be chained together using dots (".") to reference functions or identifiers in nested namespaces.
For example:
Trim(LastName)
Trim(Company.Address.City)
CreateGuid(Company.Address.City)