Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Just getting into the NoSQL stuff so forgive me if this is a simple question. I am trying to somewhat implement a repository type pattern using a generic repository for the more common operations.

One thing that I have run into that is killing this idea is that in order to get the collection you plan to work with you have to pass a string value for the name of the collection.

var collection = database.GetCollection<Entity>("entities");

This means that I have to hard code my collection names or code up a dictionary somewhere to act as a lookup so that i can map the object type to a collection name.

How is everyone else handling this?

share|improve this question

1 Answer

up vote 2 down vote accepted

What you can do is "semi-hardcode." You can put the name of the collection in a class name and refere to it:

public class Entity {
  public static readonly string Name = "entities";
}

var collection = database.GetCollection<Entity>(Entity.Name);
share|improve this answer
great idea, I thought about doing that and i can hide that property from MongoDB so that it's not saved in the DB... thanks. – JBeckton Jul 1 '12 at 15:07
I've used a similar approach before. I've also seen people use typeof(T).FullName as the collection name. – JefClaes Jul 2 '12 at 12:01
That's a good approach, but could potentially be dangerous if the namespaces get changed. – Steven Luu Jul 2 '12 at 13:37
@JBeckton, you shouldn't have to hide it from Mongo. It's a static field, not an instance field. – Steven Luu Jul 2 '12 at 13:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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