TransientObjectException when saving multiple entities
Nhibernate throws this exception when transient children are persisted before their parents.
If you encounter this exception when saving through code, ensure that child entities are saved first:
Evolving.TrueView.MyApplication.Save(child, parent);
