I am trying to figure out how to have a composite key using EF code First 4.1 RC.

Currently, I am using the [Key] Data Annotation, but I am unable to specify more than one key.

how would one specify a composite key?

Here is my Example:

 public class ActivityType
{
    [Key]
    public int ActivityID { get; set; }

    [Required(ErrorMessage = "A ActivityName is required")]
    [StringLength(50, ErrorMessage = "Activity Name must not exceed 50 characters")]
    public string ActivityName { get; set; }

}

I need the "ActivityName" to also be a key. Sure, I can code around this, but thats not good database design.

Thanks

link|improve this question

80% accept rate
feedback

2 Answers

up vote 29 down vote accepted

You can mark both ActivityID and ActivityName properties with Key annotation or you can use fluent API as described by @taylonr.

Edit:

This should work - composite key defined with annotations requires explicit column order:

public class ActivityType
{
    [Key, Column(Order = 0)]
    public int ActivityID { get; set; }

    [Key, Column(Order = 1)]
    [Required(ErrorMessage = "A ActivityName is required")]
    [StringLength(50, ErrorMessage = "Activity Name must not exceed 50 characters")]
    public string ActivityName { get; set; }

}
link|improve this answer
I've tried to mark both with the key annotation. This will not work. – bugnuker Mar 29 '11 at 15:10
I see. Thanks for updating me. Marked as answer. – bugnuker Apr 11 '11 at 20:18
feedback

We don't use the annotations, instead we override the model builder, in which case you can do something like:

modelBuilder.Entity<Activity>().HasKey(a => new { a.ActivityId, a.ActivityName });
link|improve this answer
this does work, but I am hoping for an annotation that works. There were samples with CTP 4 but these no longer work in 4.1 RC – bugnuker Mar 29 '11 at 15:11
I know you were looking for annotations, but thought this might help in the search... like I said we're not using annotations so I wasn't much help there...hope you find the answer – taylonr Mar 29 '11 at 15:15
FYI, this this works as well as the answer mentioned below. – bugnuker Apr 11 '11 at 20:19
thanks for code-first tip. – TheVillageIdiot Jan 18 at 17:00
1  
I like this approach. Keeps the model clean of Context concerns. Thx. – ctorx Feb 3 at 20:31
feedback

Your Answer

 
or
required, but never shown

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