Hello, I have two entities Teacher and mathTeacher. With mathTeacher having the property teachesMath. While Teacher having properties Id, Age, Name and Type as a discriminator value. I tried to refresh the database with the entities and have encountered a problem where they must be mapped to the same table but when I tried to change the table mapping to mathTeacher to map to the table Teacher it appears that there is no mapping for teachesMath in Teacher. So I then must also add teachesMath property also into the Teacher table. Should there not be a way for llblgen to generate the property teachesMath in Teacher without having explicitly declaring the property within the parent class?