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

Fixes #2872 Fixes #2276 Alternative for #2291. This fix specifically handles only `Contains` call on collection parameters. It minimizes changes and I think should suffice for our needs. ~Targeting it...

Hello, I noticed another regression in the newer NHibernate versions. We have quite a lot of places where some query-parameter list is filtered inside the .Where Expression like this: ```csharp...

Hello, I have this configuration: Development.cs HasMany (x => x.Assets) .KeyColumn ("Promotion_ID"). NotFound.Ignore (). LazyLoad (). Cascade.AllDeleteOrphan (). AsSet (); Asset.cs References(x => x.Estate).Column("EstateId").NotFound.Ignore().Fetch.Join().LazyLoad().ReadOnly(); References(x => x.Property).Column("PropertyId").NotFound.Ignore().Fetch.Join().LazyLoad().ReadOnly(); When I do...

It's [Oracle.ManagedDataAccess.Client](https://www.nuget.org/packages/oracle.manageddataaccess/) bug (latest known netfx working version [12.1.2400](https://www.nuget.org/packages/Oracle.ManagedDataAccess/12.1.2400), no working version for [.NET Core](https://www.nuget.org/packages/Oracle.ManagedDataAccess.Core/) lib) See NH1171 tests. Should enable them back for Oracle when issue is fixed.

c: Tests

**Michael Teper** created an issue — 26th April 2011, 12:18:30: > var result1 = from foo in ISession.Query > where ... > select foo.Bar; > var result2 = from foo...

t: Improvement
c: Linq Provider
p: Major
migrated

**Nicolás Sabena** created an [issue](https://nhibernate.jira.com/browse/NH-3565) — 4th November 2013, 19:25:46: > If I have a mapping with a property of type `AnsiString`: > ```xml > > > ``` > >...

t: Bug
c: Linq Provider
p: Minor
migrated

I would prefer more generic solution which allows for a sql-function restriction. Something like `Restrictions.SqlFunction("xxx", "a", "b", "c")`. _Originally posted by @hazzik in https://github.com/nhibernate/nhibernate-core/issues/2573#issuecomment-715140433_

t: New Feature
p: Lowest
c: Criteria

While working to migrate over to use the MultiTenancy Database strategy, I ran into a few problems rooted around the HiLoGenerator. ## Shared HiLo Values The TableHiLoGenerator's values are shared...

In one app, I have 360 mapped types. NH configuration was created as show under: ``` var map = new ModelMapper(); map.AddMappings(types); var hbm = map.CompileMappingForAllExplicitlyAddedEntities(); hbm.autoimport = false; configuration.AddMapping(hbm);...

**ma3yta** created an issue — 6th January 2017, 5:58:58: > Currently in .net world we don't have ORM which allow us to quering JSON fields from DB. > In Entity...

t: New Feature
c: Core
c: Linq Provider
c: DataProviders / Dialects
c: Mapping by Code
p: Minor
migrated