-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
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
StackOverflowException with InversePropertyAttribute on 1.1.0 #7057
Comments
This issue only appeared in 1.2 |
@AndriySvyryd please check if this was regressed in 1.1. |
So I commented out all the navigation attributes except in [ForeignKey("AcceptedResponseId")]
public CarResponse AcceptedCarResponse { get; set; }
//[ForeignKey(nameof(PassengerId))]
//[InverseProperty(nameof(HahaTaxi.Entities.Passenger.CarRequests))]
public virtual Passenger Passenger { get; set; }
[InverseProperty(nameof(CarResponse.Request))]
public virtual ICollection<CarResponse> CarResponses { get; set; } And it works now |
Verified that the regression was in 1.1.0 |
…iding adding navigations with ambiguos attributes from RelationshipDiscoveryConvention. Fixes #7057
…iding adding navigations with ambiguos attributes from RelationshipDiscoveryConvention. Fixes #7057
…iding adding navigations with ambiguous attributes in RelationshipDiscoveryConvention. Fixes #7057
Fixed in cb79bb8 |
This patch bug is approved. Please use the normal code review process w/ a PR and make sure the fix is in the correct branch, then close the bug and mark it as done. |
Reported over email...
I have the repro project for this (it couldn't be shared publically), so I can give it to whoever investigates.
Attaching stack trace as it is too big to add inline StackTrace.txt
The text was updated successfully, but these errors were encountered: