This exercise will help the students understand the underpinnings of Database design in the context of a MVC application. We will be implementing a Fake Blog together.
- Users who signup are considered "Authors"
- Published posts will be viewable by everyone
- Authors will be able to make drafts for blog posts
- Authors will be able to manually publish a draft.
- Authors will be able to delete published posts and drafts
- Authors will be able to edit a drafts
- Create a Logical ERD (models with columns).
- Add your ERD to this README as an image. (under the "Fake Blog ERD" section)
- Create C#/Entity models using your ERD
[ERD goes here]