-
Notifications
You must be signed in to change notification settings - Fork 323
New issue
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
Any plans to support transactions? #234
Comments
It does https://github.com/FransBouma/Massive/blob/master/Massive.cs#L274 but not directly. You want directly defined transactions (like you define: 'start a transaction', then do things (so the actions are all in the transaction), then 'commit transaction' ? ) besides the indirect transaction defined now? |
yes direct defined transactions like in EF. db.create(model); ^_^ |
Hello Frans, The link in your previous post does not work :( Yep transaction will be great. |
The links: |
Massive doesn't have the design to have a Unit of work and a separate transaction requires also a separate connection, which is shared among operations. Massive's design doesn't really support that. It does have internal transactions but no external transaction. If you want that, use a System.Transactions.TransactionScope. |
the current version doesn't support transactions, is there plan for add this to massive?
The text was updated successfully, but these errors were encountered: