What is the overhead of using Castle Active Record over using nHibernate directly in terms of performance? Is it significant or it does not matter?
What is the overhead of using Castle Active Record over using nHibernate directly in
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.
It doesn’t matter. ActiveRecord is just a thin convenience wrapper over NHibernate’s mapping, querying and session management (and recently some other things like in-memory testing and NHibernate.Search integration). It does not add any extra database queries or anything like that.