Not a bug, but it would be useful if we had an option to ignore a type's base class.
Currently, I have a model class declared as public class AppUser : IdentityUser<long> and the generated model has a declaration like: interface AppUser extends Microsoft.AspNetCore.Identity.IdentityUser. Of course, the Microsoft.AspNetCore.Identity.IdentityUser class it's extending doesn't exist so I get an error.
Maybe there could be an option to not include extensions of classes outside the current assembly, or on a list of assemblies.
Not a bug, but it would be useful if we had an option to ignore a type's base class.
Currently, I have a model class declared as
public class AppUser : IdentityUser<long>and the generated model has a declaration like:interface AppUser extends Microsoft.AspNetCore.Identity.IdentityUser. Of course, theMicrosoft.AspNetCore.Identity.IdentityUserclass it's extending doesn't exist so I get an error.Maybe there could be an option to not include extensions of classes outside the current assembly, or on a list of assemblies.