nhibernate-core
nhibernate-core copied to clipboard
NHibernate Object Relational Mapper
I recently discovered that NHibernate is more-capable-than-I-had-thought of supporting dependency injection (to a degree as far back as NH4). ## Background The static `Environment` object [contains an object resolver of...
See here: https://docs.microsoft.com/en-us/dotnet/api/system.data.common.dbbatch?view=net-6.0
See here: * https://docs.microsoft.com/en-us/dotnet/api/system.timeonly?view=net-6.0 * https://docs.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0
Here is an attempt to replace the `IObjectsFactory` with `IServiceProvider` interface based on #1781. [As discussed](https://github.com/nhibernate/NHibernate-Caches/pull/45#issuecomment-403283722), with `IServiceProvider` we can get the service by the base type or interface without...
Implements ~[NH-4008](https://nhibernate.jira.com/projects/NH/issues/NH-4008)~ #847. This will also be critical in being clear as to what will be supported under .netstandard2.0, and what will not. It will also make it easier to...
I need to make a UNION between two queries, and I always decided to make a union in memory (Concat) and now I have a situation where I page the...
**Ricardo Peres** created an issue — 18th May 2011, 8:45:32: > HQL should support the UNION keyword, since it provides better performance on most DBs than OR clauses. > ---...
There are cases when a linq query produces "inner joins" but a "left join" would be expected: Version is: 5.3.5 **Query** ```c# session.Query() .Join(session.Query(), a => a.X.F ?? a.Y.Z.F, b...
**rosieks** created an issue — 19th July 2012, 16:05:59: > When I create linq query that use AND operator (&) like below i get InvalidCastException: > > session.Query().Where(p => p.Name.Contains("Jo")...
**Dana Naideth** created an issue — 29th November 2010, 10:59:40: > Prior to Antlr being used to parse HQL, (big improvement btw), it was possible to use the modulo in...