We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I suggest a new feature:
Scenario: Developer would like to define global rule for class name prefixes and/or suffixes.
Example: Given two tables in the database: customer and order_detail.
customer
order_detail
When the developer adds this to the config file:
classNameGlobalRule: - prefix: Db - suffix: DTO
Both the prefix and suffix is optional.
Then the generator generates:
DbCustomerDTO
DbOrderDetailDTO
The text was updated successfully, but these errors were encountered:
Indeed, this one may be useful for some users.
Sorry, something went wrong.
No branches or pull requests
I suggest a new feature:
Scenario:
Developer would like to define global rule for class name prefixes and/or suffixes.
Example:
Given two tables in the database:
customer
andorder_detail
.When the developer adds this to the config file:
Both the prefix and suffix is optional.
Then the generator generates:
customer
theDbCustomerDTO
class.order_detail
theDbOrderDetailDTO
class.The text was updated successfully, but these errors were encountered: