We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, For perfromance needs NHibernate now supports to exclude desired entities from second level cache features. nhibernate/nhibernate-core#2744
Could you add support Cache.Never() for FluentNHibernate mapping.
public class EntUserPolicyDefMap : ClassMap<EntUserPolicyDef> { public EntUserPolicyDefMap() { Cache.Never(); } }
Does Cache.CustomUsage("never") is a option to set cache strategy.
The text was updated successfully, but these errors were encountered:
Its working with Cache.CustomUsage("never") in fluent nhibernate mapping file
Cache.CustomUsage("never")
Sorry, something went wrong.
Add cache usage option "never"
d956d26
Fixes #528
Add cache usage option "never" (#697)
242c561
Fixes #528 +semver:feature
Successfully merging a pull request may close this issue.
Hi,
For perfromance needs NHibernate now supports to exclude desired entities from second level cache features. nhibernate/nhibernate-core#2744
Could you add support Cache.Never() for FluentNHibernate mapping.
Does Cache.CustomUsage("never") is a option to set cache strategy.
The text was updated successfully, but these errors were encountered: