What is the use of Normalized Email & UserName in .NET core IdentityUser Model?
问题 When I use IdentityUser model in Asp.Net Identity with EntityFramework , it creates some standard fields in the database. All the fields are self explanatory except for the below two fields. NormalizedUsername - Which contains the uppercase value of the Username NormalizedEmail - Which contains the uppercase value of the Email My doubts are: Why do we need these Normalized fields? Where does it get used? What is the purpose of persisting it in the database? 回答1: By my understanding, both