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
Describe the bug Case where one class or record "A" has property of another type "B", and that same type "B" has property of type "A"
Declaration code
public record RoleDto( int Id, string Name, bool IsAdmin, IEnumerable<PermissionDto>? Permissions ) : BaseDto(Id); public record PermissionDto( int Id, string Name, IEnumerable<RoleDto> Roles ) : BaseDto(Id);
What have I tried:
What worked:
Environment (please complete the following information):
Additional context Instead of removing property, I would like to keep it.
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
Looks like a duplicate of #785. You need to ignore one of these two properties until #785 is supported.
No branches or pull requests
Describe the bug
Case where one class or record "A" has property of another type "B", and that same type "B" has property of type "A"
Declaration code
What have I tried:
What worked:
Environment (please complete the following information):
Additional context
Instead of removing property, I would like to keep it.
The text was updated successfully, but these errors were encountered: