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

Audit trail integrated with NHibernate

Results 9 nhibernate-envers issues
Sort by recently updated
recently updated
newest added
trafficstars

Bumps Oracle.ManagedDataAccess.Core from 2.19.120 to 2.19.180. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=Oracle.ManagedDataAccess.Core&package-manager=nuget&previous-version=2.19.120&new-version=2.19.180)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

Bumps [System.Data.SqlClient](https://github.com/dotnet/corefx) from 4.4.2 to 4.8.5. Release notes Sourced from System.Data.SqlClient's releases. .NET Core 2.1.0 RC1 Release Notes Known Issues Download and Install Repos CoreCLR CoreFX Core-Setup CLI Commits See...

dependencies

Bumps [log4net](https://github.com/apache/logging-log4net) from 2.0.8 to 2.0.10. Release notes Sourced from log4net's releases. Address CVE-2018-1285 and improve netstandard 2.0 support Apache log4net 2.0.10 improves netstandard2.0 support thanks to community member @NicholasNoise....

dependencies

One question, I have mapped the fields this way: `Component(x => x.RentSearchParameters, m => { m.Map(x => x.MinPrice).Column("precio_min_alquiler").Nullable(); m.Map(x => x.MaxPrice).Column("precio_max_alquiler").Nullable(); m.Map(x => x.ApproxPosition).Column("posicion_aproximada_alquiler").Nullable(); m.Map(x => x.Timing).Column("timing_alquiler").Nullable(); m.Map(x => x.Step).Column("step_alquiler").Nullable();...

As requested in Issue #18 I have made a test for this example.

This is an illustration for the issue: https://github.com/nhibernate/nhibernate-envers/issues/20

I get an error after updating NHibernate from 5.1.3 to 5.2.5 This error is during changes not lazy property in another session

I have added few failing tests according to [https://github.com/nhibernate/nhibernate-envers/issues/7](https://github.com/nhibernate/nhibernate-envers/issues/7) The main problem is that Envers tries to perform database related work during `BeforeTransactionCompletion` event, but it is forbidden by NH...