Как мне сначала сопоставить составной первичный ключ в коде Entity Framework 4? - PullRequest
46 голосов
/ 29 апреля 2010

Сначала я разбираюсь с кодом EF4, и он мне до сих пор нравится. Но у меня возникают проблемы с отображением объекта в таблицу с помощью составного первичного ключа.

Конфигурация, которую я пробовал, выглядит следующим образом:

public SubscriptionUserConfiguration()

    {
                Property(u => u.SubscriptionID).IsIdentity();
                Property(u => u.UserName).IsIdentity();
    }

Который выдает это исключение: Невозможно определить ключ для типа объекта SubscriptionUser.

Что мне не хватает?

Ответы [ 4 ]

73 голосов
/ 26 мая 2010

Вы также можете использовать

HasKey(u => new { u.SubscriptionID, u.UserName });

Edit:

Одно ограничение, которое я обнаружил, заключается в том, что следующее не работает:

public ProjectAssignmentConfiguration()
{
    HasKey(u => u.Employee.EmployeeId);
    HasKey(u => u.Project.ProjectId);
}

или

public ProjectAssignmentConfiguration()
{
    HasKey(u => new { u.Employee.EmployeeId, u.Project.ProjectId });
}

Так как настроить объект, в котором таблица соединения имеет первичный ключ, состоящий из внешних ключей?

20 голосов
/ 17 ноября 2011

Я постараюсь объяснить это шаг за шагом, используя следующую сущность

public class Account
{
    public int AccountId1 { get; set; }
    public int AccountId2 { get; set; }
    public string Description { get; set; }
}
  1. Создание класса, производного от объекта EntityTypeConfiguaration<TEntity> для переопределения соглашений

    class AccountEntityTypeConfiguration : EntityTypeConfiguration<Account>
    {
    
        public AccountEntityTypeConfiguration()
        {
          // The Key
          // The description of the HasKey Method says
          // A lambda expression representing the property to be used as the primary key.
          // If the primary key is made up of multiple properties then specify an anonymous type including the properties.
          // Example C#: k => new { k.Id1, k.Id2 }
          // Example VB: Function(k) New From { k.Id1, k.Id2 }
          this.HasKey(k => new { k.AccountId1, k.AccountId2 } );  // The Key
    
          // Maybe the key properties are not sequenced and you want to override the conventions
          this.Property(p => p.AccountId1).HasDatabaseGeneratedOption(System.ComponentModel.DataAnnotations.Schema.DatabaseGeneratedOption.None);
          this.Property(p => p.AccountId2).HasDatabaseGeneratedOption(System.ComponentModel.DataAnnotations.Schema.DatabaseGeneratedOption.None);
    
          this.Property(p => p.Description).IsRequired();  // This property will be required
          this.ToTable("Account");  // Map the entity to the table Account on the database
        }
    }
    
  2. При создании класса, производного от объекта DbContext, переопределите метод OnModelCreating и добавьте новый объект AccountEntityTypeConfiguration в конфигурации построителя модели.

    public class MyModelAccount : DbContext
    {
        public DbSet<Account> Accounts { get; set;}
    
        protected override void OnModelCreating(DbModelBuilder modelBuilder)
        {
            // Add a new AccountEntityTypeConfiguration object to the configuration of the model, that will be applied once the model is created. 
            modelBuilder.Configurations.Add(new AccountEntityTypeConfiguration());
        }
    
    }
    

Надеюсь, это поможет вам!

15 голосов
/ 08 августа 2013

Вы также можете использовать атрибут Column

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

    [Key, Column(Order = 1)]
    public int RoleId { get; set; }
}
6 голосов
/ 29 апреля 2010

Решено: я должен использовать HasKey, а не Identity. Это работает:

public SubscriptionUserConfiguration()
{
     HasKey(u => u.SubscriptionID);
     HasKey(u => u.UserName);
}
...