ASP Net Identity Ajouter un champ unique à l'utilisateur

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