Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个在数据库(MS SQL Server)中加密的列(工资)。我正在使用实体框架从前端显示/编辑记录。知道如何解密前端的列以显示工资值吗?
谢谢
如果您在数据库级别进行加密,则必须使用数据库级别进行解密 - 用于ObjectContext.ExecuteStoreQuery<YourEntityType>(...)从数据库加载记录 - 将具有正确解密用法的 SQL 命令传递到该方法中。
ObjectContext.ExecuteStoreQuery<YourEntityType>(...)