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

NHibernate Object Relational Mapper

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

Useful for parameter detection logic (i.e. to properly detect AnsiString type for parameter in hql) Fixes part of the problem described in #1166

t: Improvement
c: Core
p: Minor

**Andrey Kozhyn** created an issue — 2nd January 2013, 15:19:09: > When HasFlag method is called for any enum System.NotSupportedException is thrown for such query: > > session.Query().FirstOrDefault(x => x.EnumProperty.HasFlag(TestEnum.Value));...

t: New Feature
c: Linq Provider
p: Minor
migrated

Noticed it while working on https://github.com/nhibernate/nhibernate-core/pull/2959 (test case added there - CanLoadComponentEntity)

Original version has some strange logic for handling proxies..

**Kris Desmadryl** created an [issue](https://nhibernate.jira.com/browse/NH-3530) — 12th September 2013, 20:45:09: > As since NH3+ setting the default_batch_fetch_size to something has very bad impact on memory as soon the SessionFactory is...

t: Bug
c: Core
p: Critical
migrated

Fixes #1169 Simply fallback to old logic when new one doesn't work.

**Gerke Geurts** created an [issue](https://nhibernate.jira.com/browse/NH-3594) — 24th January 2014, 16:13:56: > The SQL Server 2012 dialect generates invalid SQL when paging or limits are used on SELECT DISTINCT queries. The...

t: Bug
c: DataProviders / Dialects
p: Minor
migrated

Hello. I get a `System.ArgumentException` using `ISession.Query().Select()` when querying for two or more hierachical levels. This is my model: public class Building { public virtual int? Id { get; set;...

Just noticed hibernate fix https://github.com/hibernate/hibernate-orm/pull/4228 Possible regression from https://github.com/nhibernate/nhibernate-core/pull/2576 Need to check if it hits us too..

If ambient transaction (TransactionScope) times out during a Flush, changes can still be affectuated to the database. The premisis is that the connection to SQL Server is in autocommit mode...