Results

Once you have concatenated criterias together, you can execute the query via the execution methods. Please remember that these methods return the results, so they must be executed last.

// Get
var results = c.idEq( 4 ).get();

// Listing
var results = c
     .like("name", "lui%")
     .list();

// Count via projections of all users that start with the letter 'L' or 'l' using case-insensitive-like
var count = c.ilike("name","L%").count();

Tip: You can call count() and list() on the same criteria, but due to the internal workings of Hibernate, you must call count() first, then list().

Last updated