I am having trouble with understanding and implementing a many to many repationship using the FLuent API and EF Core.
I have looked at this question and set up my relati
You should add the Clients property to the Job class too:
public class Job : IEntityBase { public int Id { get; set; } public ICollection Clients{ get; set; } }
Then everything should be in order.