Skip to content

Instantly share code, notes, and snippets.

View harishrathi's full-sized avatar

Harish Rathi harishrathi

  • AlgoSys Tech
  • Pune
View GitHub Profile
@albertbori
albertbori / MyDB.cs
Last active June 13, 2023 18:11
.NET EntityFramework Encryption Example (C#)
public class MyDB : IdentityDbContext<User>
{
//DBSet properties go here
public MyDB()
{
((IObjectContextAdapter)this).ObjectContext.ObjectMaterialized += new ObjectMaterializedEventHandler(ObjectMaterialized);
}
#region Encryption