Hi all!
All examples I’ve seen so far wrap Ecto.Multi
in transaction to execute - is it possible to run it outside of transaction? That is to use something else (not Repo.transaction
) to execute it?
I find error handling provided by Ecto.Multi
to be useful but don’t need to rollback previous changes in case further operations fail.
Thanks