I have a question about ASP.net Identity. First, I want my system user has different properties. For example, Teacher have Name, Adress,PhoneNumber but Student just have Name and Score.Student and Teacher are both my system user.
So, I found a similar question in the bellow adress: How to create different user types in ASP.NET Identity?
"If you need to store information that's unique to being a buyer or a seller, then you can also use claims, which are far more flexible than adding additional properties to your user model and definitely far more flexible that creating actual foreign key relationships to store extra data."——by above anwser.
So I learn about claims in ASP.Net Identity.But I find that the class Claim has the Value is read only, in other words, if i create a claim, and put Adress property in it ,I can't modify its value. If the idea of using claim is not a good idea, what kind of method should i take?