We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This test fail
var store = new EntityStore(); var entityA = store.CreateEntity(); var entityB = store.CreateEntity(); entityA.AddRelation(new Link(entityB)); entityA.DeleteEntity(); var incomingLinks = entityB.GetIncomingLinks<Link>(); incomingLinks.Count.Should().Be(0); private readonly struct Link(Entity target) : ILinkRelation { public Entity GetRelationKey() => target; }
The text was updated successfully, but these errors were encountered:
add test to reproduce: #13
e4c8681
add test Test_Relations_GitHub_13 to reproduce bug.
Test_Relations_GitHub_13
Sorry, something went wrong.
Fix: Remove incoming links if removing linked target entity. #13
54f0c17
Fixed by Fix: Remove incoming links if removing linked target entity
Fixed in 3.0.0-preview.14
friflo
No branches or pull requests
This test fail
The text was updated successfully, but these errors were encountered: