We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b33095e commit 897f837Copy full SHA for 897f837
src/NHibernate.Test/NHSpecificTest/GH3288/Entity.cs
@@ -1,4 +1,5 @@
1
-using System.Collections.Generic;
+using System;
2
+using System.Collections.Generic;
3
4
namespace NHibernate.Test.NHSpecificTest.GH3288
5
{
@@ -10,6 +11,7 @@ class TopEntity
10
11
class MiddleEntity
12
13
public virtual int Id { get; set; }
14
+ public virtual string Name { get; set; }
15
public virtual ISet<Component> Components { get; set; } = new HashSet<Component>();
16
}
17
src/NHibernate.Test/NHSpecificTest/GH3288/Mappings.hbm.xml
@@ -13,6 +13,7 @@
<id name="Id" >
<generator class="identity" />
</id>
+ <property name="Name" />
<set cascade="all" name="Components" table="BottomEntity">
18
<key not-null="true">
19
<column name="MiddleEntity_id" />
0 commit comments