You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for the fast reply. Is this task in your roadmap?
Could you give advise where and how to implement that on my own?
Should be some recursive function. But I'm not familiar with elsa workflow yet.
So I'm not sure where to implement that. There should probably be a list of EntityInfo?!
Could you give advise where and how to implement that on my own?
I think it's possible to implement this through Roslyn service, which is already used to parse entity classes.
It's not very related with elsa, although everything in ABPHelper is implemented as an elsa workflow.
For now entity properties are parsed as strings, for your feature, they should be parsed with more info rather than a simple string.
For example, there is a Blog AggregateRoot with a list property of Posts:
When I generate the code for Blog, I would expect that a BlogDto and a PostDto would be generated.
Where the BlogDto contains a List of PostDto.
But what I get is just a BlogDto with a property of type List instead of List.
Would it be possible to support nested entities?
The text was updated successfully, but these errors were encountered: