EFCodeFirst ctp 5复合主键

时间:2011-05-02 14:17:10

标签: asp.net-mvc-3 ef-code-first

是否有办法首先使用代码(模型)在efcodefirst中创建复合键。

atm我有这个

 [Key]
    public string ResourceType { get; set; }
    public string CultureCode { get; set; }
    public string ResourceKey { get; set; }
    public string ResourceValue { get; set; }

我需要resourcetype + resourcekey作为复合键。

1 个答案:

答案 0 :(得分:0)

我找到了解决方案。它与此处介绍的相同 Composite Key with EF 4.1 Code First