File tree 3 files changed +1
-4
lines changed
NHibernate/Hql/Ast/ANTLR/Tree
Async/NHSpecificTest/GH1962
3 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -19,11 +19,9 @@ namespace NHibernate.Test.NHSpecificTest.GH1962
19
19
public class FixtureAsync : BugTestCase
20
20
{
21
21
[ Test ]
22
- [ KnownBug ( "#1962" ) ]
23
22
public async Task LinqShouldBeValidAsync ( )
24
23
{
25
24
using ( var session = OpenSession ( ) )
26
- using ( session . BeginTransaction ( ) )
27
25
{
28
26
var result =
29
27
await ( session
Original file line number Diff line number Diff line change @@ -7,11 +7,9 @@ namespace NHibernate.Test.NHSpecificTest.GH1962
7
7
public class Fixture : BugTestCase
8
8
{
9
9
[ Test ]
10
- [ KnownBug ( "#1962" ) ]
11
10
public void LinqShouldBeValid ( )
12
11
{
13
12
using ( var session = OpenSession ( ) )
14
- using ( session . BeginTransaction ( ) )
15
13
{
16
14
var result =
17
15
session
Original file line number Diff line number Diff line change @@ -362,6 +362,7 @@ private FromElement CreateEntityAssociation(
362
362
_fromClause . Walker . AddQuerySpaces ( _queryableCollection . CollectionSpaces ) ;
363
363
}
364
364
elem . CollectionTableAlias = roleAlias ;
365
+ _fromClause . AddCollectionJoinFromElementByPath ( _path , elem ) ;
365
366
return elem ;
366
367
}
367
368
You can’t perform that action at this time.
0 commit comments