views:

12

answers:

1

i have a person class with a photo property and i want to load just that one property in a lazy fashion. i see that regular nhibernate supports it here. is this possible in fluent nhibernate to use this feature

+1  A: 

Yes, just add .Lazy() to the Fluent mapping.

David Pfeffer
@David Pfeffer - i dont see that property in the mapping. i do see .LazyLoad()
ooo

related questions