Skip to content
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

Feature Request: Create associations with Nullable types #71

Open
0x326 opened this issue Mar 24, 2023 · 1 comment
Open

Feature Request: Create associations with Nullable types #71

0x326 opened this issue Mar 24, 2023 · 1 comment

Comments

@0x326
Copy link
Contributor

0x326 commented Mar 24, 2023

Current state

public record Foo
{
    public IEnumerable<Bar>? Bars { get; set; }
}

public record Bar
{
    // ...
}

generates:

class Foo <<record>> {
    + Bars: IEnumerable<MdmPhoneModel>?
}
class Bar <<record>> {
    ...
}

Desired state

An association from Foo to Bar is created.

@0x326 0x326 changed the title Create associations with Nullable types Feature Request: Create associations with Nullable types Mar 24, 2023
@PendingChanges
Copy link
Contributor

Currently working on this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants