pierre3 / PlantUmlClassDiagramGenerator

This is a generator to create a class-diagram of PlantUML from the C# source code.
MIT License
654 stars 129 forks source link

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

Open 0x326 opened 1 year ago

0x326 commented 1 year ago

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; }