Journey.Application assembly. ApplicationDbContext in Journey.Application and started building configurations for my entities using the IEntityTypeConfiguration<T> pattern with the following in my Application Context:Account:Account has a key x.Id and The context should be picking up this configuration via the assembly binding in OnModelCreating.EntityTypeConfiguration since it doesn't seem to pick up the .HasKey definition. I also tried putting an exception in the Type Configuration method and it did not fail with my exception, so im relatively certain it's not executing my model binders, does anyone know what I've done wrong here?