fluent-nhibernate
fluent-nhibernate copied to clipboard
Fluent NHibernate!
While the DSL supports SqlDelete(), SqlUpdate(), etc in subclass maps, it is not rendered in the resulting hbm file.
> **Note:** This PR body was truncated due to platform limits. This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | Type | Update |...
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [Microsoft.NET.Test.Sdk](https://redirect.github.com/microsoft/vstest) | `17.13.0` -> `17.14.1` |  |  | --- ### Release...
I'm trying to solve n+1 query problem with fluent-nhibernate, as [this article](https://www.baeldung.com/cs/orm-n-plus-one-select-problem) says, > For instance, in Hibernate, since JPA 2.1, we can use an EntityGraph to solve this problem....
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [GitVersion.Tool](https://redirect.github.com/GitTools/GitVersion) | `6.1.0` -> `6.3.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/)...
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [GitReleaseManager.Tool](https://redirect.github.com/GitTools/GitReleaseManager) | `0.19.0` -> `0.20.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/)...
I have a mapping for base class and derived ``` public class Document: ClassMap { public Document() { Table("documents"); // Mapping properties Id(x => x.Id) .Column("id") .GeneratedBy.Sequence("documents_sequence"); DiscriminateSubClassesOnColumn("type"); } }...
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [NUnit.Analyzers](https://redirect.github.com/nunit/nunit.analyzers) | `4.9.2` -> `4.11.2` |  |  | --- ### Release...
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [NUnit](https://nunit.org/) ([source](https://redirect.github.com/nunit/nunit)) | `4.3.2` -> `4.4.0` |  |  | --- ###...
Closes #415 Adds the ability to specify a collection .AsIdBag(). Note that the NHibernate xml mapping model is a little odd: - The column attribute on collection-id is always required...