I\'m interested in switching over our application (or parts of it) to use RavenDB from SQL server with NHibernate.
I was able to successfully run a simple test for RavenDB based on the code found at: http://ravendb.net/tutorials/hello-world
When doing multi-tenant applications using a RDMBS I use tenantId columns in each table to indicate which tenant a row belongs to.
Theres one thing that I haven\'t understood with document databases and that\'s how to handle shared objects. Take this these two d开发者_开发问答ifferent objects/documents:
If I\'m trying to save a list of items I want to save that has a count > 30 I get an error saying The maximum number of requests (30)
Lets say we mimic the behaviour of a many-to-many relationship between Users and UserGroups, and we\'re storing the ID\'s of which UserGroups a User is in, in the User document within开发者_如何学C an
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely solicit debate, a
I have a model that looks like: class Comment { public string ID { get; set; } public string ArticleType { get; set; }
I\'m new to MongoDB, so please bear with me. I have 2 questions: First, take the following: // add a record
Is it possible to use Sql Server XML columns as a substitute for a real Document DB (such as Couch or Mongo) ?