$options is a array which can contain following options. All options are optional.
'fields' Limit the columns selection. Use a array or a comma separated list (like in SQL SELECT)
If empty all columns will be selected.
'offset' Offset of the result set (in SQL OFFSET)
'limit' Limits the result set (in SQL LIMIT)
'order' The column to order. Example:
array(
array('field' => 'category', 'direction' => 'asc'),
array('field' => 'title', 'direction' => 'asc')
)
'foreignKeys' Define which column should be resolved. If empty all columns will be resolved.
Use a array or a comma separated list (like in SQL SELECT)
'permissionCheck' Defines whether we check against the ACL or not. true or false. default false