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
A pattern will be used to extract the entity name and optionally apply a prefix or suffix. For example, if the table name is "tblEmployees", the pattern ^tbl(?<ClassName>.*?)$ will extract "Employees"
The extracted name can be prefixed or suffixed further.
To match all tables and apply a prefix, one might use the pattern ^.*?$.
example configuration in generation.yml under data > entity
Table in database:
t_User
Generated class now:
public class tUser
Expected output:
public class User
The text was updated successfully, but these errors were encountered: