2009/3/17 Chucara <[email protected]> > > - Is it possible to load flat lists of objects? I.e. don't load any > collections or relationships to other tables. We don't wan't any > automatic loading either. We simply want a poco object without > references.
You can use NH as a simple mapper. Map everything as int-Id and make the work of load the appropriate instance by yourself and/or use lazy-false and load the instance immediately where you can. After that ask your self is something else than NH is better for your needs ( http://ibatis.apache.org/index.html) -- Fabio Maulo --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "nhusers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nhusers?hl=en -~----------~----~----~----~------~----~------~--~---
