I created a new entity data model for my database and manually created POCO objects for this to display them, and all this works fine.
The problem is that now I want to rename the properties in my POCO objects so that they differ from the field names in the database, for example, I want UserID, not user_id, when I do this, it is obvious that EF can no longer bind object to POCO object. Is there a way I can do this? Maybe decorating the properties with attributes to say which cards to them?
source
share