Berel Friedman
Results
1
issues of
Berel Friedman
When using Microsoft's Identity package it's possible to disable ApplicationUser properties by overriding the dbContext OnModelCreating method as follows: ``` protected override void OnModelCreating(DbModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); modelBuilder.Entity().Ignore(c => c.AccessFailedCount)...