Hi All,
I used database first approach to create my entities.
It worked really great and turned my fields' names from my_old_field_names to MyOldFieldNames and also created relation with my_old_field_names in db to MyOldFieldNames in entity.
However I want to go 1 step more and instead of that "relation" I want to convert all the table field names from my_old_field_names to MyOldFieldNames
can I use codefirst to do this and how?
thank you