PreviousNext

Generating Entity Data Model Diagram from EF Code First DbContext

by bill-s, 2013-03-02T21:44:30.000Z

The Entity Framework Code First approach lets the developers to build applications with Domain-Driven Design (DDD) by hand coding your Persistence Ignorance (PI) classes. At the same time, it would be great if we could see the entity model in a visual diagram, which can also ensure that our domain model is accurate and our relationships are designed properly. The Entity Framework Power Tools lets you to view a  read-only view of the Code First model in the Entity Model Designer, from a Code First DbContext class.

Read More