Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/NHibernate.Test/Async/NHSpecificTest/GH1583/Fixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,9 @@ protected override HbmMapping GetMappings()
}

[Test]
[KnownBug("GH-1583")]
public async Task QueryForPropertyOfParentInComponentAsync()
{
using (var session = OpenSession())
using (session.BeginTransaction())
{
var result = await ((from p in session.Query<Parent>().SelectMany(x => x.Children)
select p.ParentLink.ParentId).ToListAsync());
Expand Down
2 changes: 0 additions & 2 deletions src/NHibernate.Test/NHSpecificTest/GH1583/Fixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,9 @@ protected override HbmMapping GetMappings()
}

[Test]
[KnownBug("GH-1583")]
public void QueryForPropertyOfParentInComponent()
{
using (var session = OpenSession())
using (session.BeginTransaction())
{
var result = (from p in session.Query<Parent>().SelectMany(x => x.Children)
select p.ParentLink.ParentId).ToList();
Expand Down