.NET EF Core : how to correctly insert and update a model in a many to many relationship with a join table with a payload?
I am writing a .NET CRUD application with layered architecture with EF Core for ORM. I have two models (Players
and Teams
) stored in the database with a join table between them (Player in Team
).