When using nHibernate and lazy loading, how would I get this kind of behavior:
I have a Customer class, and the customer has many addresses. (say 100 to make this make more sense).
I load my customer row, I want to just access 1 item from the addresses collection.
I don't want nHibernate to load all 100 addresses, but with lazy loading from what I understand, will load all of them?
I want 3 of them only, and I want to load all 3 at once, how would I get this behavior?