使用 Entity Framework Code First 时将 SQL Server Sequential Guid 作为键

发布于 2024-10-23 13:06:59 字数 305 浏览 1 评论 0原文

我想使用 EF4 将实体映射到具有顺序 guid 作为 PK 的表。根据这篇文章 http:// leedumond.com/blog/using-a-guid-as-an-entitykey-in-entity-framework-4/ EF4 支持此功能,但使用 edmx 映射。使用 EF4 Code First 时是否可以使用服务器生成的 Guid,如果可以,如何使用?

I want to use EF4 to map entity to a table that has sequential guid as a PK. According to this post http://leedumond.com/blog/using-a-guid-as-an-entitykey-in-entity-framework-4/ EF4 supports this but with edmx mapping. Is there a way to use the server generated Guids when using EF4 Code First and if yes how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉南桥 2024-10-30 13:06:59

是的,您必须映射您的 Key 属性。假设您有一个像这样的实体:

public class MyEntity
{
    public virtual Guid Key { get; set; }
    ...
}

然后您可以定义 DbContext 派生类,例如:

public class Context : DbContext
{
    public DbSet<MyEntity> MyEntities { get; private set; }

    public Context()
        : base("connection")
    {
        MyEntities = Set<MyEntity>();
    }

    protected override void OnModelCreating(ModelBuilder modelBuilder)
    { 
        base.OnModelCreating(modelBuilder);

        modelBuilder.Entity<MyEntity>().HasKey(e => e.Key);
        modelBuilder.Entity<MyEntity>()
                    .Property(e => e.Key)
                    .HasDatabaseGeneratedOption(DatabaseGenerationOption.Identity);

        // Other mapping
    }
}

或者您可以简单地使用数据注释定义您的实体:

public class MyEntity
{
    [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
    public virtual Guid Key { get; set; }
    ...
}

编辑:

如果映射是,则此方法有效与现有数据库一起使用,但如果您希望 EF 代码优先为您创建数据库,它将使用普通(非顺序)引导! 检查此问题以获取数据库生成时可能的解决方案。

Yes, you must map your Key property. Let's assume you have an entity like:

public class MyEntity
{
    public virtual Guid Key { get; set; }
    ...
}

Then you can define DbContext derived class like:

public class Context : DbContext
{
    public DbSet<MyEntity> MyEntities { get; private set; }

    public Context()
        : base("connection")
    {
        MyEntities = Set<MyEntity>();
    }

    protected override void OnModelCreating(ModelBuilder modelBuilder)
    { 
        base.OnModelCreating(modelBuilder);

        modelBuilder.Entity<MyEntity>().HasKey(e => e.Key);
        modelBuilder.Entity<MyEntity>()
                    .Property(e => e.Key)
                    .HasDatabaseGeneratedOption(DatabaseGenerationOption.Identity);

        // Other mapping
    }
}

Or you can simply define your entity with Data Annotations:

public class MyEntity
{
    [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
    public virtual Guid Key { get; set; }
    ...
}

Edit:

This works if the mapping is used with existing database but if you want EF code-first to create database for you it will use normal (not sequential) guids! Check this question for possible solutions in case of database generation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文