nhibernate-core
nhibernate-core copied to clipboard
NHibernate Object Relational Mapper
I've upgraded from NHibernate 4.1 to 5.3 and soft obsoletes are starting to become a problem. For example, a line in my code like if (obj is IProxy) doesn't work...
**Alexander Zaytsev** created an issue — 13th June 2012, 18:15:34: > > ```xml > > > > > > > > > > > > > > > > >...
The sql statement I want to implement is `select log.OPUserId as PutStaffId,max(log.OPUserName) as PutStaffName,**group_concat(log.Id)** as PutLogIdsStr,sum(log.Point) as Point from PromotionAccountPutLog log where .. group by log.OPUserId` ``` var statisticsList =...
Fix for #2834 Looked quite a lot at the Java implementation, which has this support added. They have also cleaned up a bit, e.g by replacing old generators with configuration...
**Márcio Mônego Fonseca** created an [issue](https://nhibernate.jira.com/browse/NH-3460) — 10th May 2013, 14:06:39: > Bidirecional OneToMany from Entity with ComponentAsId doesn't fill the inverse collection on Parent load. But on direct load...
1. Migrate `Release Package` build from TeamCity to GitHub Actions. 2. Automatically build a Release version on git tag. Eg, build release version (no `-dev` suffix) if it is a...
Running TC build agent cost me money (~$65 per month), so I would like it to be decommissioned over time.
Hello, I'm running the following: * NHibernate 5.4.0 * FluentNHibernate 3.1.0 * .NET 7 * SQL Server 2022 * MsSql2012Dialect With this, I've experienced intermittent errors I don't understand for...
**rberens** created an issue — 15th July 2009, 2:03:43: > When having a discrimator and a many-to-one association on the same column in a superclass insertion fails. > Consider the...
It would be really helpful for composite keys when key properties are also exposed in Entity for convenience. Something like: ```C# public class CompositeId { public int Key1 {get;set;} public...