Method Signatures
component persistent="true" name="User" extends="cborm.models.ActiveEntity"{
property name="id" column="user_id" fieldType="id" generator="uuid";
property name="lastName";
property name="userName";
property name="password";
property name="lastLogin" ormtype="date";
}user = getInstance( "User" ).findByLastName( "Majano" );
users = getInstance( "User" ).findAllByLastNameLike( "Ma%" );
users = getInstance( "User" ).findAllByLastLoginBetween( "01/01/2010", "01/01/2012" );
users = getInstance( "User" ).findAllByLastLoginGreaterThan( "01/01/2010" );
users = getInstance( "User" ).findAllByLastLoginGreaterThanAndLastNameLike( "01/01/2010", "jo%" );
count = getInstance( "User" ).countByLastLoginGreaterThan( "01/01/2010" );
count = getInstance( "User" ).countByLastLoginGreaterThanAndLastNameLike( "01/01/2010", "jo%" );Last updated
Was this helpful?