nhibernate-core
nhibernate-core copied to clipboard
NHibernate Object Relational Mapper
Version: 5.3.10 If there are two sub-queries like this: ```cs // Cat, Dog and Person are all entities. session.Query() .Select(t => new { dogNames = p.Dogs.Select(p => p.Name).ToArray(), catNames =...
I just wanted this issue to be registered, to open it up for fixes and/or discussion. IMO, this could and should be avoided by using better querying strategies in scenarios...
**Mike Abraham** created an [issue](https://nhibernate.jira.com/browse/NH-2785) — 1st July 2011, 11:05:52: > When extending an existing table via an optional (see abridged mapping below) and specifying optimistic locking via `optimistic-lock="dirty" dynamic-update="true"`...
**Dawid Ciecierski** created an [issue](https://nhibernate.jira.com/browse/NH-3616) — 16th May 2014, 20:15:32: > This seems similar to NH-2296. Imagine an entity with a set of strings (think photo with a set of...
Just fixes similar column types checks for precision and scale is not implemented, because: _From @fredericDelaporte:_ > Validating length/scale/precision when available should be done as an improvement, with a dedicated...
Version: 5.3.10 If the select clause has HQL generator method and subquery at the same time. like this: ```cs session.Query() .Select(t => new { name = p.Name.Like("abc*") ? 0 :...
This fixes a regression from #1480, where destroying the externally supplied and shared cache has been replaced by setting it to null. Related: #2530. But this change causes further usages...
This started after updating to 5.3.2 from 5.2.7. I can't create a repro since some tests work ok. ``` Stack Trace: AfterTransactionCompletionProcessQueue.AfterTransactionCompletion(Boolean success) SessionImpl.AfterTransactionCompletion(Boolean success, ITransaction tx) AdoTransaction.AfterTransactionCompletion(Boolean successful) AdoTransaction.Commit()...
Hi there, I used nhibernate v4.1.4 for a long time and all works perfectly until we decide to update to lastest version. (5.3.10) We use it on a wcf service....