I have .NET Core app with .NET Identity + Entity Framework Core.
Also I have 2 tables dbo.AspNetUsers
and dbo.Emails
I want to sync columns dbo.AspNetUsers.Email
and dbo.Emails.Email
So if I update one of the table (Email
column) then column Email
in another table also synced.
What’s the best way to do that?