How to create identity user based on claims prinicpals

I am using asp.net mvc with work/school accounts authentication. Currently I’m trying to implement identity into to the user process. Here is my ApplicationUser class: public class ApplicationUser: IdentityUser { public ICollection<Semester> Semesters { get; set; } } So far, identity works just fine, there is just one problem. When I log into the app … Read more