In an app on which I'm currently working, I just replaced db4o with RavenDB. I just noticed something that wasn't working, did some research, and now I need a sanity check.
Let's assume this domain model:
Person has Name, Address, and Car properties.
Car has Make, Model, and Mileage properties.
With RavenDB, I can create a Car and save it. Then I can create a Person and assign a Car to the Person's Car property. When I save Person, Car gets saved within Person. All seems fine.
The problem is when I later update Car.Mileage. Car gets updated in RavenDB, but not within Person.Car. Person.Car has the old mileage.
Car exists on its own. Person Joe can own the car, and so can Person Nancy. Both Person objects will have a reference to Car.
In RavenDB, how should this be handled? From everything I've read about aggregate/root objects, it looks like maybe I should add a CarId property to Person. Then, when I load Person, also manually load the Car by the ID. Is that right? Or can I embed the Car property within Person, and somehow have all Person objects show the correct Person.Car.Mileage as Car.Mileage changes over time?