nhibernate-core
nhibernate-core copied to clipboard
NHibernate Object Relational Mapper
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [System.Linq.Dynamic.Core](https://dynamic-linq.net/) ([source](https://redirect.github.com/zzzprojects/System.Linq.Dynamic.Core)) | `1.3.14` -> `1.4.5` | [](https://docs.renovatebot.com/merge-confidence/) |...
There is currently no way to limit number of rows that should be deleted via HQL query. This is a very common scenario when implementing retention policies on large databases....
The bug was reported to hibernate: https://hibernate.atlassian.net/browse/HHH-10341 I did not find the documentation for the .Net version. Please correct me if Nhibernate follows other specifications. In hibernate, the buggy code...
`Session.Query().Any()` should generate SQL with EXIST statement SELECT ( CASE WHEN EXISTS ( SELECT NULL FROM TABLE T ) THEN 1 ELSE 0END ) AS [Value] Instead of fetching the...
I'm using the typical exception handling with two using blocks, as detailed [here](https://nhibernate.info/doc/nhibernate-reference/manipulatingdata.html#manipulatingdata-exceptions). Occasionally, I'm getting "Commit failed" during NHibernate.Transaction.AdoTransaction.Commit(): `Execution Timeout Expired. The timeout period elapsed prior to completion...
We are using Oracle 11g database with Nhibernate 5.4.6 (driver class Nhibernate.Driver.OracleDataClientDriver) and Trying to insert the document of type byte array (of length >2000) into a Long Raw column...
Hi. The following tests should illustrate my issue best: ```csharp using FluentNHibernate.Cfg; using FluentNHibernate.Cfg.Db; using FluentNHibernate.Mapping; using NHibernate; using NHibernate.Event; using NSubstitute; namespace Tests { public class WithVersion { private...
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [FirebirdSql.Data.FirebirdClient](http://www.firebirdsql.org/en/net-provider/) ([source](https://redirect.github.com/FirebirdSQL/NETProvider)) | `9.1.1` -> `10.3.1` | [](https://docs.renovatebot.com/merge-confidence/) |...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [Npgsql](https://togithub.com/npgsql/npgsql) | `7.0.4` -> `7.0.6` | [](https://docs.renovatebot.com/merge-confidence/)...
Oracle8iDialect may not name all temporary tables with HT_ prefix. Some may be prefixed with T_ instead. This bug was reported to hibernate: https://hibernate.atlassian.net/browse/HHH-9290 The buggy code of hibernate is...