rimeiro tipo complexo do código EF com uma propriedade de navegaç

My Model:

public class Country
{
    public int CountryId { get; set; }
    public string Name { get; set; }

    public virtual ICollection<User> Users { get; set; }
}

public class Location
{
    public string Address { get; set; }

    public virtual int CountryId { get; set; }
    public virtual Country Country { get; set; }
}    

public class User{

    protected User()
    {
        Location = new Location();
    }

    public int UserId { get; set; }
    public Location Location { get; set; }

}

Ao gerar o banco de dados, recebo:

One or more validation errors were detected during model generation:

System.Data.Edm.EdmEntityType: : EntityType 'Location' has no key defined. Define the key for this EntityType.
System.Data.Edm.EdmEntitySet: EntityType: EntitySet �Locations� is based on type �Location� that has no keys defined.

Como tenho uma propriedade de navegação dentro de um tipo complexo? Se eu remover a propriedade de navegação do país, ela funcionará bem.

questionAnswers(2)

yourAnswerToTheQuestion