I am creating sample blog project and designed this entity data model.
Is there anything else required, I mean in association and navigation property...

I have created this design on the following basis..
- user can have many post ( 1 to many )
- user can have many comments ( 1 to many )
- user can have many tags (1 to many )
- post can have many comments ( 1 to many )
- post can have many tags ( 1 to many )
Do I need to create association for 1 to 1 between post and user like
- 1 post must and can have 1 user ( 1 to 1 )
- tag must and can have 1 user ( 1 to 1 )
I am confused that I already have created 1 to many relationships between all of this and I have the required navigation properties. Is it necessary to create 1 to 1 association mentioned above?

...Detailentities? – Torious Jun 7 '12 at 12:31