What is the difference between llblgen and nHibernate?

What are the main differences between llblgen and nHibernate?

+3
source share
3 answers

LLBLGen is a sleek tool that reinforces the casing that ultimately generates extensible code. Customer service is second to none and bugs are fixed as they are found by one of the best minds in the business. I had a 5-hour turnaround on unclear, affecting only me, mistakes.

I am currently cutting my teeth at nhibernate and I must say that the fears that have kept me from this for a long time were not inappropriate. This is a great tool with a huge user base, but in essence the file mapping / mapping / attribute mapping strategy is soft and fragile at the same time.

This is my opinion, it is not necessary for penal downvotes, because I criticize nhibernate.

+4
source

LLblgen is a commercial tool, it uses design-based configuration to generate classes for accessing data.

Nhibernate is a free, open source tool that uses xml-based mapping files to map your objects to tables in the database.

I prefer Nhibernate over LLblgen.

+3

llblgen:

LLBLGen Pro, the N1 memory cell generator and data generator for .NET, generates the full level of data access and business facade / support level for you (in C # or VB.NET), using the existing set of database schemas. In a few seconds. The generated .NET code is ready for compilation and can be compiled by the .NET C # compiler or VB.NET, immediately used by other applications.

So yes, this is also an ORM carter, plus more downloads.

+1
source

Source: https://habr.com/ru/post/1709195/


All Articles