❔ EF Core many-to-many migration problems
I added a new entity
No problems with creating the migration and applying it to the DB, but now I'm getting this error during runtime
I'm a bit of a loss on what is wrong as nothing seems wrong from the configurations.
VesselTransfer and added two one-to-many relationship to the Vessel entity, and added the configuration as shown in the code below to OnModelCreating.No problems with creating the migration and applying it to the DB, but now I'm getting this error during runtime
Unable to determine the relationship represented by navigation 'Team.Persons' of type 'ICollection<Person>'.. On a entity and relationship that has no changes, and I'm getting some form of this exception on whatever query I run. The error has different entities and relationships depending on the query.I'm a bit of a loss on what is wrong as nothing seems wrong from the configurations.