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
55 public virtual int Id { get ; set ; }
66 public virtual string Name { get ; set ; }
77 }
8-
8+
99 class Child1 : Mother
1010 {
11- public virtual Thing1 Thing { get ; set ; }
11+ public virtual Thing1 Thing { get ; set ; }
1212 }
13+
1314 class Child2 : Mother
1415 {
1516 public virtual Thing2 Thing { get ; set ; }
1617 }
18+
1719 class Thing1
1820 {
19- public virtual string Id { get ; set ; }
21+ public virtual string Id { get ; set ; }
2022 public virtual string Name { get ; set ; }
2123 }
24+
2225 class Thing2
2326 {
24- public virtual string Id { get ; set ; }
27+ public virtual string Id { get ; set ; }
2528 public virtual string Name { get ; set ; }
2629 }
2730}
Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ public void LookForThingOfTypeThing2()
101101 transaction . Commit ( ) ;
102102 }
103103 }
104+
104105 [ Test ]
105106 public void LookForThingOfTypeThing1 ( )
106107 {
@@ -125,6 +126,7 @@ left outer join Thing2 thing2x1_ on
125126 transaction . Commit ( ) ;
126127 }
127128 }
129+
128130 [ Test ]
129131 public void LookForManyToOneByDescr ( )
130132 {
You can’t perform that action at this time.
0 commit comments