加密实体框架连接字符串的最佳方法是什么?

时间:2015-06-29 23:37:17

标签: entity-framework security encryption app-config

使用Entity Framework中的数据库第一种方法,使用存储在app.config文件中的连接字符串,在部署到生产环境时加密或隐藏连接字符串的最佳方法是什么?

1 个答案:

答案 0 :(得分:0)

定义config文件

的位置
Configuration config  = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);

如果您想加密connectionStrings

config.ConnectionStrings.SectionInformation.ProtectSection(Nothing);

您必须了解应用配置部分

所以,如果你想加密AppSettings

config.AppSettings.SectionInformation.ProtectSection(Nothing);

enter image description here