I am trying to deploy Raven DB to my site running .Net 4 in integrated mode (site was previously used to host ASP.Net MVC 3 site.
I\'m evaluating RavenDB for a new project. If i create 100 entities i got great consecutive ids like :
I have class class UserActivity { private IList<Activity> _activities = new List<Activity>();
I am using repository pattern with Raven DB. My repository interface is public interface IRepository<T> where T : Entity
How do I disable RavenDB replication? The reason for that is I have a simple database on开发者_运维问答 one server and I don\'t need any replication at this point.
I have a WCF service that accepts requests, performs some work and saves result to Raven DB. I am t开发者_Go百科hinking that the session management shall be similar to NHibernate with WCF, but I am no
I have a need to get a Count of Documents in a particular collection : There is an existing index Raven/DocumentCollections that stores the Count and Name of the collection paired with the actual doc
I have a Model called Post, which has a field called Slug. I\'ve marked this field with the attribute [ID] and changed the FindIdentityProperty Convention in RavenDB such that it considers the propert
I am trying to implement IoC (Ninject) for Ravendb and have ran into a little snag.I am using code from http://www.dotnetguy.co.uk/post/2010/06/12/raven-db-ndash-part-1-ndash-docume开发者_如何学编程nt
Both of the following queries work as expected. I\'m having trouble figuring out how to return both from the database in one pull using the \"Include()\" method.