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

Test cases for https://github.com/nhibernate/nhibernate-core/issues/3156

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [Microsoft.AspNetCore.OData](https://togithub.com/OData/AspNetCoreOData) | nuget | patch | `7.5.12` -> `7.5.17` | ---...

p: Lowest
t: Task
dependencies

Cons: query is executed for each not found element for not filtered collection for Criteria and lazy loading (so not ideal when `not-found="ignore"`) [hibernate](https://github.com/hibernate/hibernate-orm/blob/496e5995b2c07853953d05540a8368ec18ac7c02/hibernate-core/src/main/java/org/hibernate/loader/collection/BasicCollectionJoinWalker.java#L152) uses inner join for many-to-many lazy...

GuessEntityName fails to retrieve the EntityName of *ProxyFieldInterceptor. Switch to use BestGuessEntityName instead since it already handles this case.

With this PR query plans for queries like: ```c# db.Customers.Select(o => new {o.CustomerId, Constant = "constant"}).First() db.Customers.WithLock(LockMode.Upgrade).ToList() ``` will be cached. This was achieved by adding an additional parameter for...

Added tests to show #1298 is fixed on the current master.

c: Tests

Fixed by slightly modifying a few relinq related classes, copied a couple of them from Relinq where it was not possible to override them - 1 was sealed and another...