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 id;
long currency;
}
in the practical scenario there will be large number of Orders (with ever growing numbers). What would be the optimum way to convert this to support a document based db. There is a option to change the currency code and name and when it happens will it be updated automatically across all the orders if the currency is added as a child of order?