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
Either Dirty or comparing with the original values. Not sure which one yet
Dirty: will fail if same value is written back.
Original: need to store original value and needlessly compare.
Perhaps a combination can be used, e.g. copy-on-modify.
$m['name'] = 'John'; var_dump($m->saveAction());
^^ the query should only update 'name' and not 'surname'
The text was updated successfully, but these errors were encountered:
This was fixed in #21
Sorry, something went wrong.
romaninsh
No branches or pull requests
Either Dirty or comparing with the original values. Not sure which one yet
Dirty: will fail if same value is written back.
Original: need to store original value and needlessly compare.
Perhaps a combination can be used, e.g. copy-on-modify.
^^ the query should only update 'name' and not 'surname'
The text was updated successfully, but these errors were encountered: