We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$models = Data::on($conn); $good = $models->filter(Filter::equal('processed', 'y'))->count(); $bad = $models->filter(Filter::equal('processed', 'n'))->count();
this example gives $bad the same value as $good since it will not be evaluated after query adaption
ipl-orm/src/Query.php
Line 723 in 832d9ff
of course this would work:
$models = Data::on($conn); $good = $models->filter(Filter::equal('processed', 'y'))->count(); $models = Data::on($conn); $bad = $models->filter(Filter::equal('processed', 'n'))->count();
Best Regards Nicolas
The text was updated successfully, but these errors were encountered:
Which I'd suggest anyway.
But thanks for bringing this up!
Sorry, something went wrong.
No branches or pull requests
this example gives $bad the same value as $good since it will not be evaluated after query adaption
ipl-orm/src/Query.php
Line 723 in 832d9ff
of course this would work:
Best Regards
Nicolas
The text was updated successfully, but these errors were encountered: