Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Using the object to fetch #125

Open
entermix opened this issue Mar 19, 2016 · 0 comments
Open

Using the object to fetch #125

entermix opened this issue Mar 19, 2016 · 0 comments

Comments

@entermix
Copy link

Now I make a selection like this:

        $count_all = ORM::factory('Advert')
            ->where('status_id', 'in', [
                ORM::factory('Advert_Status')->where('name', '=', 'new')->find(),
                ORM::factory('Advert_Status')->where('name', '=', 'moderation')->find(),
            ])->count_all();

It would be nice to be able to do so:

        $count_all = ORM::factory('Advert')
            ->where('status_id', 'in', ORM::factory('Advert_Status')
                    ->where('name', 'in', ['new', 'moderation'])
                    ->find_all()
            )->count_all();

What do you think?

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant