Added EF Power Tools link (#8993)

pull/8994/merge
Dave Brock 2018-10-12 07:47:25 -05:00 committed by Luke Latham
parent f4b0be4375
commit 7586ea1e1a
1 changed files with 1 additions and 1 deletions

View File

@ -429,7 +429,7 @@ public Student Student { get; set; }
There's a many-to-many relationship between the `Student` and `Course` entities. The `Enrollment` entity functions as a many-to-many join table *with payload* in the database. "With payload" means that the `Enrollment` table contains additional data besides FKs for the joined tables (in this case, the PK and `Grade`).
The following illustration shows what these relationships look like in an entity diagram. (This diagram was generated using EF Power Tools for EF 6.x. Creating the diagram isn't part of the tutorial.)
The following illustration shows what these relationships look like in an entity diagram. (This diagram was generated using [EF Power Tools](https://marketplace.visualstudio.com/items?itemName=ErikEJ.EntityFramework6PowerToolsCommunityEdition) for EF 6.x. Creating the diagram isn't part of the tutorial.)
![Student-Course many to many relationship](complex-data-model/_static/student-course.png)