Identitas bersih ASP Tambahkan bidang unik ke pengguna

modelBuilder.Entity<ApplicationUser>()
        .HasIndex(b => b.CustomProperty)
        .IsUnique();
Ivanoft