I have two tables:

Requirement

RequirementId - PK

Fixture

FixtureId - PK

RequirementId - FK / NULLABLE / Unique Constraint

A Fixture can only have 1 Requirement, no other Fixture should be able to reference the same Requirement. It is not mandatory for a Fixture to have a Requirement, its optional.

What i have done is, in Sql Server i have placed a Unique constraint on the RequirementId column in the Fixture table. How do I setup the mapping for this in Entity Framework CTP 5 ?

Also would it be possible to have a bidirectional navigation property on each entity?

public class Fixture
{
    public int FixtureId { get; set; }
    public Requirement Requirement { get; set; }
}

public class Requirement
{
    public int RequirementId { get; set; }
    public Fixture Fixture { get; set; }
}

Maybe im getting this all wrong, so any advice would be great. Thanks in advance

link|improve this question
feedback

2 Answers

up vote 4 down vote accepted

What you are after is called One-to-One Foreign Key Associations and like Ladislav mentioned is not natively supported by EF. However, I showed how to implement it with Code First in this article.

link|improve this answer
1  
+1 very nice solution – Ladislav Mrnka Mar 2 '11 at 21:30
Thanks for clearing that up ! – JCoder23 Mar 2 '11 at 21:33
@Ladislav: Thanks :) – Morteza Manavi Mar 2 '11 at 21:52
feedback

Unfortunatelly current version of EF is not able to work with unique constraint. The only way how to achieve 1:0..1 mapping in EF is "sharing PK". It means that if main entity is Fixture it will have FixtureId as its PK and Requirement will have FixtureId as its PK and FK to Fixture.

link|improve this answer
What if the Requirement must be able to exist without a Fixture? – JCoder23 Mar 2 '11 at 21:24
1  
@JCoder: Check (and accept) @Morteza's answer. – Ladislav Mrnka Mar 2 '11 at 21:27
feedback

Your Answer

 
or
required, but never shown

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