nhibernate-core
nhibernate-core copied to clipboard
NHibernate Object Relational Mapper
[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [FirebirdSql.Data.FirebirdClient](http://www.firebirdsql.org/en/net-provider/) ([source](https://togithub.com/FirebirdSQL/NETProvider)) | nuget | patch | `8.5.2` -> `8.5.4` |...
[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [Microsoft.Data.SqlClient](https://aka.ms/sqlclientproject) ([source](https://togithub.com/dotnet/sqlclient)) | nuget | minor | `3.0.0` -> `3.1.1` |...
[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [Npgsql](https://togithub.com/npgsql/npgsql) | nuget | patch | `5.0.11` -> `5.0.14` | ---...
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [MySql.Data](https://dev.mysql.com/downloads/) | `8.0.30` -> `8.4.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/)...
And added test cases for #1166
### Code Block ```c# var item = (from customer in ISession.Query() join customerComm in ISession.Query() on new { customer.CustomerNo, IsDefault = true, CommunicationType = "MobilePhone" } equals new { customerComm.CustomerNo,...
Hello, there is an problem with the generation of SQL-Code when a collection filter is set on a joined subclass. Here is an example mapping (modified existing joined-subclass.hbm.xml). ```xml ```...
I'm trying to do a bulk update as shown below. ``` await _session.Query() .Where(x => x.Name.StartsWith("sa")) .UpdateBuilder().Set(y => y.Score.Performance, 10) .UpdateAsync(ct).ConfigureAwait(false); ``` This is what I'm seeing in the error....
[`Take(IQueryable, Range)`](https://docs.microsoft.com/en-us/dotnet/api/system.linq.queryable.take?view=net-6.0#system-linq-queryable-take-1(system-linq-iqueryable((-0))-system-range))