UserType belongs to many Users <-> Users have one UserType
One way navigation property with required
public class UserType
{
public int UserTypeId {get; set;}
}
public class User
{
public int UserId {get; set;}
public int UserTypeId {get; set;}
public virtual UserType...