#352- Unit Of Work : Updated applicability of pattern in README.

This commit is contained in:
Piyush Chaudhari 2017-09-27 00:04:06 +05:30
parent b8491436dd
commit b5eca2f856

View File

@ -23,7 +23,7 @@ Use the Unit Of Work pattern when
* To optimize the time taken for database transactions.
* To send changes to database as a unit of work which ensures atomicity of the transaction.
* You want to reduce number of database calls.
* To reduce number of database calls.
## Credits