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
public record Foo { public IEnumerable<Bar>? Bars { get; set; } } public record Bar { // ... }
generates:
class Foo <<record>> { + Bars: IEnumerable<MdmPhoneModel>? } class Bar <<record>> { ... }
An association from Foo to Bar is created.
Foo
Bar
The text was updated successfully, but these errors were encountered:
Currently working on this
Sorry, something went wrong.
No branches or pull requests
Current state
generates:
Desired state
An association from
Foo
toBar
is created.The text was updated successfully, but these errors were encountered: