Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

When does the next version of nhibernate come out?


Asked by Edgar McPherson on Dec 08, 2021 FAQ



NHibernate 5.0 was released on October 10, 2017. It provides support for asynchronous programming. This version requires .NET Framework 4.6.1 or later. NHibernate 5.1 was released on March 17, 2018. It supports .NET Standard 2.0 and .NET Core 2.0. NHibernate 5.2 was released on December 4, 2018. NHibernate 5.3 was released on July 19, 2020.
And,
What is NHibernate? NHibernate is a mature, open source object-relational mapper for the.NET framework. It's actively developed, fully featured and used in thousands of successful projects. It's built on top of ADO.NET and the current version is NHibernate 4.0.4.
Accordingly, The first line of the test method creates a new instance of the NHibernate configuration class. This class is used to configure NHibernate. In the second line we tell NHibernate to configure itself. NHibernate will look out for configuration information since we do not provide any information here in the test method.
Furthermore,
NHibernate has several concurrency models that you can use: We will explore each of those in turn. None basically means that we fall back to the transaction semantics that we use in the database. The database may throw us out, but aside from that, we don’t really care much about things. Optimistic is more interesting.
Moreover,
Transactions And Concurrency NHibernate is not itself a database. It is a lightweight object-relational mapping tool. Transaction management is delegated to the underlying database connection.