In layman's terms, what is a unit of work in regards to database objects? I'm researching how to convert database tables into C# classes and I frequently come across this term, but everyone seems to describe it as if you should already know what it is.
|
|
|
|
|
|
|
I'll quote Martin Fowler here, since I think his meaning is one of the clearest, most comprehensible I've seen:
|
||
|
|
|
Basically it means the work required to complete an atomic action, e.g. transferring money between two checking accounts. Example (in pseudocode)
A good MSDN article describing Unit of Work and Persistence Ignorance is here: http://msdn.microsoft.com/en-us/magazine/dd882510.aspx |
|||
|
|
|
|
In LINQ to SQL a unit of work is defined as (http://msdn.microsoft.com/en-us/library/bb546187.aspx):
Understanding the unit of work is important for success with LINQ to SQL. Have a look at this page (A update scenario), for how the unit of work pattern fits into LINQ to SQL: http://aspalliance.com/1414_LINQ_to_SQL_Part_4__Updating_our_Database.3 Martin Fowler's Patterns of Enterprise Architecture book has quite a few pages devoted to the topic (pg 184-194). His brief definition is:
|
|||
|
|
