I have user Model, like this:
    public class User : IdentityUser<Guid>
    {
        public string FullName { get; set; }
       //... more lines
    }
Now I need to use some methods for user, that are made for base entity, so I want to add Base Entity, but it does not work.
    public class User : IdentityUser<Guid>, BaseEntity
    {
        public string FullName { get; set; }
       //... more lines
    }
I tried creating new user with only BaseEntity and then it works, but then I lose all the methods for IdentityUser which I don't want.
 
     
    