Using Entity Framework Code First CTP5, how do I create a primary key column that are INTs and are not identity columns

后端 未结 3 1697
盖世英雄少女心
盖世英雄少女心 2020-12-17 08:11

Using Entity Framework Code First CTP5, how do I create a primary key column that are INTs and are not identity columns

Preferably not using attributes.

相关标签:
3条回答
  • 2020-12-17 08:18

    If you're building your entities using the fluent interface rather than using attributes over the properties, you may be able to use the DatabaseGenerationOption class (from EntityFramework.dll, in the System.ComponentModel.DataAnnotations namespace). I've not tested it, but this is what it would look like:

    modelBuilder
        .Entity<Foo>()
        .Property(f => f.Id)
        .HasDatabaseGeneratedOption(DatabaseGeneratedOption.None);
    
    0 讨论(0)
  • 2020-12-17 08:35

    That answer didn't work for me (in EF 4.1).

    To make this work, I added DatabaseGenerated attribute to my key column:

    public class FacebookUser
    {
      [Key]
      [DatabaseGenerated(DatabaseGeneratedOption.None)]
      public long FacebookId { get; set; }
    
      // ...
    }
    

    Hope this helps someone.

    0 讨论(0)
  • 2020-12-17 08:38

    Small Change

    public class User
    {
    
      [Required, Key, DatabaseGenerated(DatabaseGeneratedOption.None)]
    
      public int ID { get; set; }
    
      // Rest of the code
    }
    
    0 讨论(0)
提交回复
热议问题