Table naming issue on inferring schema

Hi,
I just inferred a schema twice before running the code just to mae sure I had all the tables but Radzen has created the same able twice but with different case on the name:
builder.Entity<Reports.Models.Schools01.AlternativeAssessmentEse>().HasNoKey();
builder.Entity<Reports.Models.Schools01.Alternativeassessmentese>().HasNoKey();

The second does not exist in the models.

The model has
public partial class AlternativeAssessmentEse

and the actual table is alternativeassessmentese

Am I doing something wrong?

OK, I found that there are two tables with the same name but in our Postgres database they are named alternativeassessmentese and AlternativeAssessmentESE. It looks like this tricks the Radzen code to correctly put two tables into the context but only create a model for one of them. Renaming one of the tables in the database fixed the issue.