What is the deffered load in NHibernate? what is it’s usage?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Are you referring to Lazy Loading?
Essentially it means that the data for the object is not loaded from the database until you actually need it.
If you had a large object graph for example Customers > Orders > OrderItems > Product you might not need to load all the data from Orders, OrderItems, Product if you are just altering the customers last name for example.