I am coming from the background of Java and used to Hibernate ORM. Coming to .NET I found nHibernate which is a port-over of Hibernate API.
However, it seems more ppl are suggesting the use of EasyObjects in .NET environment so I would like to ask if some questions:
1. Able to load entire object graph, for example: Customer object encapsulating collection of Order objects. This means Orders are automatically loaded when we retrieve the customer object.
2. Is it a 1:1 mapping against database entities?
3. Cascading save/delete/update. For example, when saving a Customer detail, its Order are also saved (assuming setting of cascading saving is enabled in config file)
Any opinion is greatly welcomed on this topic
Thanks.
