I have some POCOs and there are corresponding persistence objects that do the CRUD. What is a good name for the persistence objects? I've seen people use the term "service objects" for these, but when I think service, I think WCF. Maybe "persistence objects" is the best, but I'd like to hear what other people think.
|
|
|
|
|
|
|
One common convention is the Repository pattern when dealing with persisting objects to a datastore, so you would expect to see naming conventions in the form of (given an corresponding type Poco):
|
||
|
|
|
I believe you are thinking of a Data Transfer Object. |
||
|
|
|
|
Data Transfer Objects, or DTO's, is a common way to refer to these objects. See Martin Fowler's definition: http://martinfowler.com/eaaCatalog/dataTransferObject.html |
||
|
|
|
|
Perhaps just adding "persistor" to the name, like Person_persistor etc, if the persistence objects just are used for persisting. |
||
|
|
|
|
I believe "Entities" is a commonly used and traditional name. |
||||||
|
