You are not logged in.
Does SynMongoDB support transactions? I didn't find it?
Offline
There was no transaction support in MongoDB until recently.
So we don't support them directly.
But you can still use the transaction commands.
https://www.mongodb.com/docs/manual/cor … perations/
Anyway, I would not go into this direction, but focus on the "aggregate pattern", i.e. try to use atomic CRUD operations with big documents, which are big enough to not need any transaction.
If you need a transaction, it is likely that you are going into the RDBMS model. Therefore, use a RDBMS i.e. SQL database, not MongoDB.
Offline
Thank you~~
Offline