nhibernate-core
nhibernate-core copied to clipboard
NHibernate Object Relational Mapper
### Observations **A DbBatch looks like a DbCommand, but just on the surface.** Unlike batching which uses an underlying `DbCommand`, `DbBatch `will require special handling for things such as `Prepare`,...
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [Microsoft.AspNetCore.OData](https://redirect.github.com/OData/AspNetCoreOData) | `7.7.0` -> `7.7.6` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/)...
This bug was originally reported to hiberante: https://hibernate.atlassian.net/browse/HHH-3646 The buggy code of hibernate is: getPathInfo(String){ ... else if ( type.isComponentType() ) { componentPath += '.'; } } The fixed code...
Good morning, Nhibernate is not creating batch inserts, I am using SQL Server. I have already used all available settings and have not been successful.
**Antonio Anzivino** created an [issue](https://nhibernate.jira.com/browse/NH-3427) — 18th March 2013, 13:18:16: > I have found a potential bug when exporting the DDL generated by a Fluent NHibernate mapping. > > First,...
**Tomas Gerhardsen** created an [issue](https://nhibernate.jira.com/browse/NH-3880) — 10th June 2016, 5:48:01: > The hilo optimizer is not calculating the correct id when called from two different processes. > > You will...
We have a search screen which started to fail once enabling second level cache and enabling cache for query. Here is the generated HQL: `select count(distinct a) from Entity.CourseOffering a...
I've noticed whilst profiling recently that I keep getting random calls to update particular entities when I flush changes to the database, even if they haven't changed. After looking into...
Given the following mapping: ```xml Person ``` With the following implementations: ```c# public class Person { private Details _details; public virtual int Id { get; protected set; } public virtual...
NHibernate cannot proceed if any error happens inside Redis cache. I believe if any issue happens in caching then NHibernate should skip that and use Database instead. I got timeout...