pierre3 / PlantUmlClassDiagramGenerator

This is a generator to create a class-diagram of PlantUML from the C# source code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Feature request: Allow `nameof()` in `[PlantUmlAssociation]`

0x326 opened this issue · comments

Current state

class Foo
{
    [PlantUmlAssociation(Name = "Bar")]
    public IEnumerable<Bar>? Bars { get; set; }

Desired state

class Foo
{
    [PlantUmlAssociation(Name = nameof(MdmPhoneModel))]
    public IEnumerable<Bar>? Bars { get; set; }