I’m using Entity Framework Model First in my project with VS2010.
I’m wondering if there is a way to set the field password to be encrypted in .edmx window or Properties windows maybe. I don’t want to change the generated .cs file since it will be covered each time I modify the model.
EF doesn’t have any built in support for encryption and it also doesn’t have support for database encryption mechanism (unless you are using transparent encryption in SQL Server which will encrypt whole database).
As a workaround you can do centralized encryption and decryption in your application. Here is high level idea:
stringproperty for your encrypted data – this property will be represented asnvarcharcolumn in target databaseSaveChangesmethod in yourObjectContextorDbContextinherited partial class (or handleSavingChangesevent forObjectContextinherited class). In this method / handler search for all instances of your entity which are inAddedorModifiedstate (useObjectStateManagerorDbChangeTracker), take the value from the property which should be encrypted, encrypt it and store encrypted value back to the property in Base64 format. In case ofSaveChangesoverride callbase.SaveChangesafter you encrypted property for all instances.ObjectMaterializedeven onObjectContextinherited class (in DbContext you will have to useIObjectContextAdapterto getObjectContextinstance from yourDbContextinstance), take the encrypted value from the property, convert it from Base64 format to byte array, decrypt it and store it back to the property. This may lead to some other complications because changing the property value may result in modified state but you should be able to fix it as well.