NHibernate - Usefulness -


i work in software , hardware development farm. today 1 of colleagues told me nhibernate useful small projects, , complex or large scale projects must avoided. also, makes code harder change.

are statements true?

ebay uses hibernate (the java version nhibernate ported from). don't consider small project.

as far changing code goes, consider this: let's assume need add new property object.

here has done hand-rolled data access layer:

  • add column db table.
  • change every stored procedure deals object / table. several stored procedures in experience.
  • change code in mapping layer
  • add property object

here has done nhibernate:

  • add column db table.
  • add property hbm file
  • add property object.

Comments

Popular posts from this blog

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -