I started using EF recently, so I do not have much knowledge about it.
I would like to know if I have a comparison of my class with the database, using EF.
Comparison example:
Employee Class has the following fields:
Code, Name, Zip, Phone, City.
In the database in the Employees table, you have the following fields:
Code, Name, Zip, Phone, City, State
I wanted an Entity routine that compared my Employees class to the Employees table, and I would return which fields the bank has, and which my class does not have, and vice versa (class owns, bank does not own ).
Do you know if it is possible to do this, or if EF only creates the database according to the mapping I did in my class?