Tagged Questions
14
votes
6answers
1k views
How to stop thinking “relationally”
At work, we recently started a project using CouchDB (a document-oriented database). I've been having a hard time un-learning all of my relational db knowledge.
I was wondering how some of you ...
1
vote
1answer
48 views
How to re-model the existing data model for a document oriented db like ravendb or mongodb
Assume the following scenario (with relational databases),
class Currency
{
long id;
String code;
String name;
}
class OrderGroup
{
long id;
Collection<Order> Orders;
}
class Order
{
long ...