Results
count( propertyName = "' )
service
.newCriteria()
.joinTo( "categories", "categories" )
.isEq( "categories.categoryID", getCategoryID() )
.isTrue( "isPublished" )
.isLE( "publishedDate", now() )
.isEq( "passwordProtection", "" )
.$or(
service.getRestrictions().isNull( "expireDate" ),
service.getRestrictions().isGT( "expireDate", now() )
)
.cache( true )
.count( "contentID" );get( properties="" )
getOrFail( properties="" )
list( ... )
Last updated
Was this helpful?