Latest posts

Entity Framwork core 5 - Many to Many relationships

Lately, I've been working on a project using Entity Framework core 5. I read the release notes and I realized that finally there is a good solution to implement Many-to-Many DB relationships on Entity Framework. In previous EF versions, when we had two entities with Many to Many relationships(M2M from now on), we had to add a third entity on our context to represent the join table. Also, we ha...