mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 08:15:53 +01:00
1b3dc4ae2c
- New! `TMVCActiveRecord.Count` method (e.g. `TMVCActiveRecord.Count(TCustomer)` returns the number of records for the entity mapped by the class `TCustomer`) - Change! `TMVCACtiveRecord.GetByPK<T>` raises an exception if the record is not found - New! `contains` clause has been added in the RQL compiler for Firebird and Interbase - New Installation procedure! Just open the project group, build all and install the design-time package (which is `dmvcframeworkDT`)
28 lines
996 B
Plaintext
28 lines
996 B
Plaintext
eq(name,-1)
|
|
contains(nome,"João")
|
|
sort(+last_name);limit(0,1)
|
|
limit(1,5)
|
|
sort(+nome, -cognome)
|
|
ge(nome,"pi\ppo");
|
|
and ( eq ( nome , "Daniele" ) , eq ( cognome , "Teti" ) );sort(-nome);limit(10,20)
|
|
ge(nome,"pi\ppo");limit(0,10)
|
|
eq(last_name,"TE\"%20/*TI")*/
|
|
ge ( nome, "hello world")
|
|
and ( eq ( nome , "Daniele" ) , eq ( cognome , "Teti" ) )
|
|
and ( eq ( nome , "Daniele" ) , eq ( cognome , "Teti" ) )
|
|
and ( eq ( nome , "Daniele" ) , eq ( cognome , "Teti" ) )
|
|
and ( eq ( nome , "Daniele" ) , eq ( cognome , "Teti" ) )
|
|
ge(nome,"")
|
|
ge(nome,"pi\ppo")
|
|
and(eq(nome,"Daniele"),eq(cognome,"Teti"),or(eq(field1,"Ciao"),eq(field2,"Mondo")));sort(+nome,-cognome)
|
|
sort(+nome)
|
|
and(eq(nome,"Daniele"),eq(cognome,"Teti"),or(eq(field1,"Ciao"),eq(field2,"Mondo")))
|
|
and(eq(nome,"Daniele"),eq(cognome,"Teti"), or(eq(field1,"Ciao"),eq(field2,"Mondo")))
|
|
and(eq(nome,"Daniele"),eq(cognome,"Teti"))
|
|
le(valore,4)
|
|
ge(nome,"pippo")
|
|
ne(nome,4)
|
|
eq(valore,4)
|
|
lt(valore,3)
|
|
eq(nome,"Daniele")
|