I first had some fun chasing down why my IdentityUser was complaining it had no UserName property. I needed the Identity.Stores assembly to sort that one out.
But I can't find any reference to what changes were made between core 1 and 3 in reference to claims management. My DBContext and UserManager use to take care of this and the IdentityUser had a Claims property but default but now this isn't the case so am getting "User does not contain definition for Claims". Is this an easy fix and am I missing another dependency assembly? or is this a breaking change?
I've seen reference the ClaimsIdentity but I need IdentityUser attributes and am trying to up rev in the simplest of ways but this one has caught me out and can't find any reference to them removing claims for IdentityUser.
Appreciate any pointers.