views:

1737

answers:

2

when I am setting up my fluent mappings, what is the default for collections? Do I need to explicitly set them as lazy-load, or is that the default?

A: 

the answer is no. You have to add .LazyLoad();

Kyle West
If the answer is no, why did you mark the previous answer as the solution?
Mike C.
+7  A: 

Note this is changed as of current day to be inline with NHibernate standards which is lazy loading is enabled by default for everything.

Chris Marisic