Search code examples
fluent-nhibernate

does fluent nhibernate support lazy loading of properties


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


Solution

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