File tree 2 files changed +0
-4
lines changed
Async/NHSpecificTest/GH1583
2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -54,11 +54,9 @@ protected override HbmMapping GetMappings()
54
54
}
55
55
56
56
[ Test ]
57
- [ KnownBug ( "GH-1583" ) ]
58
57
public async Task QueryForPropertyOfParentInComponentAsync ( )
59
58
{
60
59
using ( var session = OpenSession ( ) )
61
- using ( session . BeginTransaction ( ) )
62
60
{
63
61
var result = await ( ( from p in session . Query < Parent > ( ) . SelectMany ( x => x . Children )
64
62
select p . ParentLink . ParentId ) . ToListAsync ( ) ) ;
Original file line number Diff line number Diff line change @@ -52,11 +52,9 @@ protected override HbmMapping GetMappings()
52
52
}
53
53
54
54
[ Test ]
55
- [ KnownBug ( "GH-1583" ) ]
56
55
public void QueryForPropertyOfParentInComponent ( )
57
56
{
58
57
using ( var session = OpenSession ( ) )
59
- using ( session . BeginTransaction ( ) )
60
58
{
61
59
var result = ( from p in session . Query < Parent > ( ) . SelectMany ( x => x . Children )
62
60
select p . ParentLink . ParentId ) . ToList ( ) ;
You can’t perform that action at this time.
0 commit comments