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?