File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
src/NHibernate.Test/NHSpecificTest/GH3363 Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -5,23 +5,26 @@ class Mother
5
5
public virtual int Id { get ; set ; }
6
6
public virtual string Name { get ; set ; }
7
7
}
8
-
8
+
9
9
class Child1 : Mother
10
10
{
11
- public virtual Thing1 Thing { get ; set ; }
11
+ public virtual Thing1 Thing { get ; set ; }
12
12
}
13
+
13
14
class Child2 : Mother
14
15
{
15
16
public virtual Thing2 Thing { get ; set ; }
16
17
}
18
+
17
19
class Thing1
18
20
{
19
- public virtual string Id { get ; set ; }
21
+ public virtual string Id { get ; set ; }
20
22
public virtual string Name { get ; set ; }
21
23
}
24
+
22
25
class Thing2
23
26
{
24
- public virtual string Id { get ; set ; }
27
+ public virtual string Id { get ; set ; }
25
28
public virtual string Name { get ; set ; }
26
29
}
27
30
}
Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ public void LookForThingOfTypeThing2()
101
101
transaction . Commit ( ) ;
102
102
}
103
103
}
104
+
104
105
[ Test ]
105
106
public void LookForThingOfTypeThing1 ( )
106
107
{
@@ -125,6 +126,7 @@ left outer join Thing2 thing2x1_ on
125
126
transaction . Commit ( ) ;
126
127
}
127
128
}
129
+
128
130
[ Test ]
129
131
public void LookForManyToOneByDescr ( )
130
132
{
You can’t perform that action at this time.
0 commit comments