The class allows you to find and automatically join database records and to
convert the result into objects. It also supports creating new objects and
persisting them in the database.
Usage:
Write
$user = new UserModel();
$user->name = 'Leo Feyer';
$user->city = 'Wuppertal';
$user->save();
Read
$user = UserModel::findByCity('Wuppertal');
while ($user->next())
{
echo $user->name;
}