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

NHibernate Object Relational Mapper

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

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [NUnit3TestAdapter](https://docs.nunit.org/articles/vs-test-adapter/Index.html) ([source](https://togithub.com/nunit/nunit3-vs-adapter)) | `4.5.0` -> `4.6.0` |...

p: Lowest
t: Task
dependencies

If provided cancellation token gets cancelled during execution of `InnerExecuteAsync` method and any listener code checks token and throws exception it gets lost because regardless of cancellation token state finally...

I ran into a puzzle that using LINQ in a query expression under NET8 and NHibernate5.5.2 uses a ternary expression, and the resulting SQL doesn't look right, the code is...

t: Bug
c: Linq Provider
p: Minor

This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [NUnit](https://nunit.org/) ([source](https://redirect.github.com/nunit/nunit)) | `3.14.0` -> `4.2.2` | [![age](https://developer.mend.io/api/mc/badges/age/nuget/NUnit/4.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |...

p: Lowest
t: Task
dependencies

Hello, The **ADOExceptionReporter** does not include the stack trace for error logs, only warnings. The problem is that our application is configured to not log warnings for **NHibernate**, and we...

This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [MySql.Data](https://dev.mysql.com/downloads/) | `8.0.30` -> `9.4.0` | [![age](https://developer.mend.io/api/mc/badges/age/nuget/MySql.Data/9.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/MySql.Data/8.0.30/9.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration...

p: Lowest
t: Task
dependencies

I create a simple query like below: ``` var query = session.Query() .GroupBy(x => x.ProductId) .Select(g => new { ProductId = g.Key, MinPrice = g.Min(p => p.Price) }) .OrderBy(o =>...

I am using NHibernate v5.4.9 and FluentNHibernate v3.4.0. In this version, I am using batch fetching to improve performance. **Configuration:** ``` Fluently.Configure().Database(MsSqlConfiguration.MsSql2012 .Dialect("MyApp.Repositories.NH.MsSqlConfiguration2012, MyAppp.Repositories") .AdoNetBatchSize(100).ShowSql() .ExposeConfiguration(cfg => { cfg.SetProperty(NHibernate.Cfg.Environment.GenerateStatistics, "true");...

I see this problems occurs in #2716 #3292 #850. But I didnt see any solution for the problem. I'm using NHibernate v5.5.2 and has an one-to-one relation mapped. I try...

NHibernate v5.5.2, .Net Framework 4.8 Table definition: `sql CREATE TABLE JustText(c nvarchar(max))` Failing test ```c# [TestMethod] public void ItShouldInsertTwoRecords() { var config = new Configuration(); config.SetProperty(NHibernate.Cfg.Environment.ConnectionString, "Server=localhost;Database=Sandbox;Trusted_Connection=True;TrustServerCertificate=True"); config.SetProperty(NHibernate.Cfg.Environment.ConnectionDriver, "NHibernate.Driver.SqlClientDriver"); config.SetProperty(NHibernate.Cfg.Environment.Dialect,...

t: Bug
c: Core
p: Minor