EntityFramework-Reverse-POCO-Code-First-Generator
EntityFramework-Reverse-POCO-Code-First-Generator copied to clipboard
Support for DDD enumeration classes
Instead of generating standard enums, will it be possible to generate enumeration classes as discussed here:
https://docs.microsoft.com/en-us/dotnet/architecture/microservices/microservice-ddd-cqrs-patterns/enumeration-classes-over-enum-types
I could certainly generate it, however it would not add benefit unless it was a partial class to which you could add your own methods.
you are right, it would have little value. i guess the work around is to generate the partial class instead of enums, and then use DDD pattern on another partial class. this works for me
thanks