How to Extend Microsoft.AspNet.Identity.EntityFramework.IdentityRole
I want to be able to extend the default implementation of IdentityRole to include fields like Description. It's easy enough to do this for IdentityUser because IdentityDbContext takes a generic parameter of type IdentityUser. However, IdentityDbContext doesn't allow you to do this for IdentityRole. How can I accomplish this? I know I can create a basic DbContext, and implement my own IUserStore, so that I can use my own role class, but I really don't want to have to do that. Any thoughts? I have just gone through this pain myself. It actually turned out to be pretty simple. Just extend