Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So lets say I have 3 objects Fruit, Apple and Orange. Fruit is the abstract base class for Apple and Orange. When I use session.Store(myApple), it puts it into the Apples collection. myOrange stores in the Oranges collection. Makes sense.

Can I tell Raven that I want a Fruits collection that could hold Apples or Oranges? Mongodb allows this since it lets me explicitly specify the collection name. The RavenDB collections documentation says:

The expected usage pattern is that collections are used to group documents with similar structure, although that is not required. From the database standpoint, a collection is just a group of documents that share the same entity name.

I'd expect it to be something like: session.Store<Fruit>(myApple), or session.Store("Fruits", myApple)

Any ideas? Thanks.

share|improve this question
These seem similar to your issue. I'd try this but I'm unable at the moment. groups.google.com/group/ravendb/browse_thread/thread/… mikehadlow.blogspot.com/2010/10/… – Derek Beattie Aug 7 '11 at 3:35

1 Answer

up vote 18 down vote accepted

Awl, You can do it using:

session.Store(apple);
session.Advanced.GetMetadataFor(apple)[Constants.RavenEntityName] = "Fruits";

That is the long way to do so. A much better way would be to add this logic globally, it looks something like this:

store.Conventions.FindTypeTagName = 
   type => type.IsSubclassOf(typeof(Fruit)) ? 
       DocumentConvention.DefaultTypeTagName(typeof(Fruit)) : 
       DocumentConvention.DefaultTypeTagName(type);

That will handle this for everything.

share|improve this answer
Yes that worked for me, thanks! – awl Aug 8 '11 at 12:39
Thanks for your response. – Mohsen Alikhani Nov 5 '12 at 8:27

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.