I'm trying to create a quick ASP.NET MVC 3 application using the RC version of EF 4.1. I have two models:

public class Race
{
    public int RaceId { get; set; }
    public string RaceName { get; set; }
    public string RaceDescription { get; set; }
    public DateTime? RaceDate { get; set; }
    public decimal? Budget { get; set; }
    public Guid? UserId { get; set; }
    public int? AddressId { get; set; }

    public virtual Address Address { get; set; }
}

and

public class Address
{
    public int AddressId { get; set; }
    public string Street { get; set; }
    public string StreetCont { get; set; }
    public string City { get; set; }
    public string State { get; set; }
    public string ZipCode { get; set; }

    public virtual Race Race { get; set; }
}

I get the following error when trying to insert a new Race:

Unable to determine the principal end of an association between the types 'rcommander.Models.Race' and 'rcommander.Models.Address'. The principal end of this association must be explicitly configured using either the relationship fluent API or data annotations.

Shouldn't it recognize RaceId as the primary key of the Races table and AddressId as the FK to the Addresses table automatically? Am I missing something?

Thanks!

link|improve this question

feedback

4 Answers

up vote 12 down vote accepted

The problem here seems to be that EntityFramework can't recognize where the foreing key is, as you are holding cross references in both objects. Not being sure what you want to achieve, I may suggest something like this:

public class Race
{
  public int RaceId { get; set; }
  public string RaceName { get; set; }
  public string RaceDescription { get; set; }
  public DateTime? RaceDate { get; set; }
  public decimal? Budget { get; set; }
  public Guid? UserId { get; set; }

  public int? AddressId { get; set; }
  public virtual Address Address { get; set; }
}

public class Address
{
  public int AddressId { get; set; }
  public string Street { get; set; }
  public string StreetCont { get; set; }
  public string City { get; set; }
  public string State { get; set; }
  public string ZipCode { get; set; }
}

Skipping reference to Race in second entity.

link|improve this answer
That was it. Thanks. – Mike Mar 18 '11 at 16:15
2  
wont this remove navigational posibilities from Address though? – Yngve B. Nilsen Mar 18 '11 at 16:31
1  
Yes it will remove navigation posibility from address and map it as one-to-many relation as I described in my answer. – Ladislav Mrnka Mar 18 '11 at 18:34
So is there a way to achieve (perhaps by attributes) the relationship in a cross reference? – Shimmy May 11 at 2:21
feedback

The problem here is 1:1 relation between Address and Race! You probably want to map it as 1:N so you need to modify address to:

public class Address
{
  public int AddressId { get; set; }
  public string Street { get; set; }
  public string StreetCont { get; set; }
  public string City { get; set; }
  public string State { get; set; }
  public string ZipCode { get; set; }

  public virtual ICollection<Race> Races { ... }
}

If you want to use 1:1 then you can't use AddressId in Race but AddressId in Address must be foreign key of Race because entity framework can achive 1:1 only be "sharing" primary key.

link|improve this answer
2  
Can you please update your answer to show how to use 1:1 using shared primary key? I would like to have a bidirectional way of accessing like this: Race.Address and Address.Race. Keep Race and Address if possible in your example. Thanks. – Leniel Macaferi Apr 27 '11 at 20:42
1  
@Leniel: Check this answer: stackoverflow.com/questions/5388077/… I think it is what you are looking for. – Ladislav Mrnka Apr 27 '11 at 20:46
feedback

It recognizes Id as the primary key by convention. So what you need to do:

public class Race
{
    [Key]
    public int RaceId { get; set; }
    public string RaceName { get; set; }
    public string RaceDescription { get; set; }
    public DateTime? RaceDate { get; set; }
    public decimal? Budget { get; set; }
    public Guid? UserId { get; set; }
    public int? AddressId { get; set; }

    public virtual Address Address { get; set; }
}
and

public class Address
{
    [Key]
    public int AddressId { get; set; }
    public string Street { get; set; }
    public string StreetCont { get; set; }
    public string City { get; set; }
    public string State { get; set; }
    public string ZipCode { get; set; }

    [ForeignKey("RaceId")] // Maybe telling it what the ForeignKey is will help?
    public virtual Race Race { get; set; }
}

The [Key] attribute indicates that it should be the PrimaryKey

If you don't want this, you need to rename your primary keys to simply public int Id {get; set; }

link|improve this answer
1  
Same error using either method. I have my DB Initializer in Application_Start in Global.asax to DropCreateDatabaseIfModelChanges if that matters. – Mike Mar 18 '11 at 12:47
1  
Hmm... Check my update.. Maybe the ForeignKeyAttribute is what you need? – Yngve B. Nilsen Mar 18 '11 at 13:27
Isnt InverseProperty("RaceId") what is needed here, not ForeignKey? – Joe Dec 2 '11 at 9:15
feedback

There is a good post: Associations in EF Code First CTP5: Part 2 – Shared Primary Key Associations

http://weblogs.asp.net/manavi/archive/2010/12/19/entity-association-mapping-with-code-first-one-to-one-shared-primary-key-associations.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.