vote up 2 vote down star

I have an interface that defines the ability to persist an entity to a data store. I'm having trouble thinking of a name for it. Any ideas?

public interface IInterfaceForDefiningADataPersistenceOperation<T>
{
    void Store(T entity);
}
flag

Shouldn't there also be a retrieval function? – jmucchiello May 5 at 13:46
Normally, yes, although the nature of my application means the data operations are a little different than the norm. – Nathan Ridley May 5 at 16:01

9 Answers

vote up 15 vote down check

IRepository ?

link|flag
Indeed - and check out the Repository pattern while you're at it. Good stuff. – Mike Robinson May 5 at 13:24
vote up 0 vote down

If your interface follows the repository pattern then I would go with IRepository.

If not then perhaps IDataMapper is more suitable.

link|flag
vote up 1 vote down

I'd go for IStorable

link|flag
vote up 1 vote down

IPersistEntities

Then you can derive class MyNewPersistenceThing : IPersistEntities

link|flag
vote up 0 vote down

IGateway

Then implementations are (for example): UserGateway, ArticleGateway and so on

link|flag
vote up 0 vote down

Wouldn't an interface be defining a group of operations, rather than 'an operation'?

link|flag
vote up 1 vote down

Did you not like any of these?

  • IPersistenceOperation
  • IDataStoreOperation
  • IEntityStoreOperation
link|flag
vote up 2 vote down
public interface IPersistenceStrategy<T>

I'm taking a leap and saying you're using the strategy pattern in order to persist things in different ways depending on the strategy you provide.

link|flag
vote up 8 vote down

How about IFooRepository, where Foo is some base-entity or describes the product. If it truly is generic, then perhaps just IRepository<T>

link|flag

Your Answer

Get an OpenID
or

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