I'm using Entity Framework 6.0 and creating an API with a database that is used by a custom made ORM by my company years ago.
In this old ORM: in the GET Mapper, some values in the Database were acted on before mapping it to the correct property. For example, some datetime properties were changed to the user timezone and then when being saved to the database, the opposite mapper changed the user timezone datetime to UTC to save in the Database.
HOW could this be done in EF 6? help PLEASE!!! a place where I can write custom logic on CERTAIN properties...not all before reading and saving