c# - Protect SQLite database used by EntityFramework Core Application -
i'm trying use entityframework core 1.0 (new name entityframework 7) manage sqlite database in c# desktop application.
i read official documentation , test-application works.
my question is: possibile password-protect database?
i know there lot of way it, exists .net class system.data.sqlite allow that, how using efcore 1?
i can't understand if possible.
thanks help,
enrico
ef core uses microsoft.data.sqlite, not support encryption out-of-box. see https://github.com/aspnet/microsoft.data.sqlite/issues/184. add encryption using sqlite extensions.
Comments
Post a Comment