sjjoshi
sjjoshi

Reputation: 13

Is it good to introduce nHibernate for a legacy database in an ongoing project?

I am working on a current ongoing project where, there are two instances of the database having different schemas for some of the tables and is being used for transfer from one to another.

Database schema is not well defined like,

Application having very less OOPS concept implemented or let's say less objects used at all.

So, looking for some answers if at all, we introduce NHibernate with Repository pattern at this particular time, to faster the development process.

Cheers.

Upvotes: 0

Views: 150

Answers (1)

Keith Nicholas
Keith Nicholas

Reputation: 44316

I have successfully introduced it into a project that had tons of custom sql and it worked quite successfully, hardest part was mapping the tables to an object model that was at least partly oksih. But other than that, it was good and it made things go a lot faster and helped with testing and got rid of a lot of SQL query issues.

Upvotes: 1

Related Questions