实体框架是否支持加密
我使用 SQLite 作为数据库和实体框架来设计我的数据库结构。 需要一个信息。实体框架是否支持数据库中特定列的“加密”。 例如:如果我有一个表 T1,其中有 2 列 C1 和 C2。现在,如果我需要加密存储在 C2 中的数据,那么实体框架允许我这样做吗?
提前致谢。
i am using SQLite as the database and Entity Framework to design my database structure.
Needed an info. Does Entity Framework support "Encryption" of a particular column in the database.
Eg: If i have a table T1 with 2 columns C1 and C2. Now if i need to encrypt the data that i stored in C2, then does Entity Framework allows me to do so?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
EF 不直接处理加密。您可以在数据库级别启用加密(我认为 SQLite 在这方面有所欠缺),或者您可以在使用 EF 将数据保存到数据库之前对数据进行预加密。
我想说在数据库级别启用加密是最好的选择(也是出于性能原因),我知道 SQL CE 支持它,但不确定 SQLite。如果没有,您可以在将数据放入数据库之前轻松加密并将其存储为二进制数据。然后用EF就可以轻松获取byte[]了。
EF does not directly handle encryption. You'll either enable encryption at the DB level, where I think that SQLite is somewhat lacking in that respect, or you'll have pre-encrypt the data before you persist it to the database using EF.
I would say enabling encryption at the DB level is the best option (also for performance reasons) and I know that SQL CE has support for it but not sure about SQLite. If not, you could easily encrypt before putting data into the database and store it as binary data. Then you can easily get the byte[] with EF.