I have used NHibernbate in few projects and now learned about few more ORMs also. I understand that, NHibernate binds Class to Datalayer dynamically during runtime using the mapping file.

My Question is , how this late binding is done ? I mean, which Methodology is used, 'Reflection' or 'DynamicMethod' ?

In case, if it uses Reflection, Is there any ORM which uses DynamicMethod? and provides better performance ?

link|improve this question

69% accept rate
feedback

3 Answers

up vote 3 down vote accepted

As of NHibernate 2.1, the proxy factory is pluggable. Here are some proxy providers supported:

  • Castle.DynamicProxy
  • LinFu
  • Spring.NET

So proxying will be actually out of NHibernate's responsibility, and the answer to this question really depends on the selected proxy factory.

link|improve this answer
feedback

NHibernate uses Castle.DynamicProxy, which under the hood uses DynamicMethods.

link|improve this answer
even if you specify your class as 'lazy' ? – Frederik Gheysels Mar 4 '09 at 13:01
@Frederik: 'lazy' is what tells NHibernate to proxy the entity with Castle.DynamicProxy. Otherwise it's not proxied. – Mauricio Scheffer Mar 5 '09 at 11:25
IIRC nhibernate makes classes lazy by default. – jonnii Mar 5 '09 at 12:48
@jonnii: yep, unless you define it otherwise (default-lazy="false" or lazy="false") – Mauricio Scheffer Mar 5 '09 at 23:01
feedback

Exactly how an ORM instantiates entities is not a good way to assess its overall performance.

link|improve this answer
agreed, but it doesn't answer the question.... – Mauricio Scheffer Mar 5 '09 at 11:23
Hand-written CRUD fan? ;) – dario-g Sep 21 '10 at 14:14
@dario-g no just like to keep a close eye on my ORM – James L Sep 21 '10 at 14:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.