I started testing a \"workflow\" with EF code first. First, I created class diagram. Designed few classes - you can see class diagram here Then I used EF Code First, cre
I believe you'll need a ProjectManager class, and your Project entity will need to have a property that points to the ProjectManager class.
Something like:
public class Project { public string Description {get; set;} public Member ProjectManager {get; set;} }