EntityFramework-Reverse-POCO-Code-First-Generator
EntityFramework-Reverse-POCO-Code-First-Generator copied to clipboard
Configuring Entity Folder Structure by Table Name
Currently, we can only create entities and place them in a single folder, as defined by the setting: Settings.PocoFolder = @"Entities";.
Is there a configuration that allows the folder structure to be based on the table name?
For example:
Entities\Categories\Category.cs
Entities\Events\Event.cs.
The purpose of this method is to allow the implementation of partial classes for any entity, ensuring they can be placed in the same folder location.