nhibernate-core icon indicating copy to clipboard operation
nhibernate-core copied to clipboard

NHibernate Object Relational Mapper

Results 279 nhibernate-core issues
Sort by recently updated
recently updated
newest added

### 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`,...

t: New Feature
c: Core
p: Minor

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` | [![age](https://developer.mend.io/api/mc/badges/age/nuget/Microsoft.AspNetCore.OData/7.7.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Microsoft.AspNetCore.OData/7.7.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)...

p: Lowest
t: Task
dependencies

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,...

t: Bug
c: Core
p: Major
migrated

**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...

t: Bug
c: Core
p: Major
migrated

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...

t: New Feature
p: Minor
c: L2 Cache