vote up 1 vote down star

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.

flag

5 Answers

vote up 2 vote down check

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):

PocoRepository
link|flag
I actually am using the repository pattern with NHIbernate and Ninject, so repository would probably be the best answer in my specific case here. – Josh Close Jun 23 at 14:40
vote up 3 vote down

I believe you are thinking of a Data Transfer Object.

link|flag
vote up 2 vote down

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

link|flag
vote up 1 vote down

Perhaps just adding "persistor" to the name, like Person_persistor etc, if the persistence objects just are used for persisting.

link|flag
vote up -1 vote down

I believe "Entities" is a commonly used and traditional name.

link|flag
Entities have nothing to do with persistence. He clearly stated that he has separate objects that do persistence. – epitka Jun 23 at 14:23
epitka is right; Entities will typically be the objects that are to be persisted. – Fredrik Mörk Jun 23 at 14:29
Fair enough; -1 to me – Craig Walker Jun 23 at 20:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.