neat-php / object

Neat Object components
MIT License
4 stars 1 forks source link

Repository sql method and SQLQuery support. #26

Closed annavanbiemen closed 4 years ago

annavanbiemen commented 4 years ago

Add support to do things like:

<?php
$entity = $repository->sql('SELECT ...')->one();

foreach (Entity::sql('SELECT ...')->all() as $entity) {
    // ...
}