When using a database I have tables and columns with names like:
- tb_user
- usu_id
- usu_name
- usu_data_nasc
- tb_product
- pro_id
- pro_name
- pro_desc_resumida
- pro_desc_completa
When you use ADO.NET Entity Data Model - > EF Designer From Database , it creates the entities classes in my project with the same name as the tables, and the properties with the same name as the database columns. But I know that the code is not good practice, and I do not want to have the name of properties like: pro_desc_completa . And yes like: descriptionComplete .
But how do I do this? Is it possible to map a property or class, with a table and have different names, using EF Designer From Database?
Or what would be the best approach to use?