Base data access class for server-side, client(browser)-side and client(console) side Repositories.
Usually used via
UB#Repository
fabric function.
Do not use it directly, use UB.Repository
instead.
Members
WhereCondition: string
inner
Enumeration of all condition types. This enumeration defines a set of String values.
It exists primarily for documentation purposes - in code use the actual string values like '>', don't reference them through this class like WhereCondition.more.
We define several aliases for the same condition. In case of direct HTTP request (without Repository) use only non-aliased values (i.e. more
instead of '>' or 'gt')
Properties:
We define several aliases for the same condition. In case of direct HTTP request (without Repository) use only non-aliased values (i.e. more
instead of '>' or 'gt')
Name | Type | Description |
---|---|---|
gt |
string | |
">" |
string | |
more |
string | |
lt |
string | |
"<" |
string | |
less |
string | |
eq |
string | |
"=" |
string | |
equal |
string | |
ge |
string | |
geq |
string | |
">=" |
string | |
moreEqual |
string | |
le |
string | |
leq |
string | |
"<=" |
string | |
lessEqual |
string | |
ne |
string | |
neq |
string | |
"<>" |
string | |
"!=" |
string | |
"!==" |
string | |
notEqual |
string | |
contains |
string | |
like |
string | |
notContains |
string | |
notLike |
string | |
isNull |
string | |
null |
string | |
notNull |
string | |
notIsNull |
string | |
isNotNull |
string | |
beginWith |
string | |
startWith |
string | |
startsWith |
string | |
startswith |
string | |
notBeginWith |
string | |
notStartWith |
string | |
notStartsWith |
string | |
includes |
string | |
in |
string | |
notIncludes |
string | |
notIn |
string | |
match |
string | |
subquery |
string | |
exists |
string | |
notExists |
string | |
custom |
string |