I cannot find the solution in the docs for this simple problem.
I want to fetched a set of objects from the database in a specific date range. I'm using DMZ Datamapper in the CodeIgniter environment.
$items = new Entity();
$items->where('date_created', 'date1 < x < date2');
$items->get();
Maybe one needs to use the $items->where_in_func(...) method?
Answer is simple: