Could any body clarify these two expression for me ?
What are cons and pros of each one ?
I’ve just worked and familiar with CodeSmith and Linq to sql among all ORM Tools
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.
It refers to whether you can disconnect the database session and still expect the entities to be “alive”. In disconnected ORMs you can disconnect and reconnect a database session (e.g. between web page requests) while retaining entity objects (e.g. in a web session state).
Personally I prefer not to work in disconnected mode (I’m mostly using NHibernate), because although it seems to simply things there will sometimes be side effects that are tricky to debug.