8

我有一个 POCO,我试图通过 Code First Migrations 创建一个 POCO,然后创建种子数据。问题是我想在播种时将特定值插入标识列。

这是我的 POCO

public class Result
{
    public long ResultId { get; set; }
    public long? TeamId { get; set; }

    public Team Team { get; set; }
}

这是我在 Configuration.cs 的 Seed 方法中的 AddOrUpdate 调用

context.Results.AddOrUpdate
    (
         r => r.ResultId,
         new Result { ResultId = 101, TeamId = null },
         new Result { ResultId = 201, TeamId = null }
    );

正如预期的那样,它不会插入 101 和 201 的值,而是插入 1 和 2。我可以将任何 DataAttributes 应用于模型来帮助解决这个问题吗?

4

4 回答 4

19

这是如何通过属性/约定关闭身份

public class Result
{
    [Key]
    [DatabaseGenerated(DatabaseGeneratedOption.None)]
    public long ResultId { get; set; }
    public long? TeamId { get; set; }

    public Team Team { get; set; }
}

这就是您通过 EntityTypeConfiguration 关闭身份的方式

public class ResultMapper : EntityTypeConfiguration<Result>
{
    public ResultMapper()
    {
        HasKey(x => x.ResultId);
        Property(x => x.ResultId)
                .HasDatabaseGeneratedOption(DatabaseGeneratedOption.None);
    }
}

或者您可以使用 OnModelCreating 重载

    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
        modelBuilder.Entity<Result>().Property(x => x.ResultId)
               .HasDatabaseGeneratedOption(DatabaseGeneratedOption.None);
    }
于 2013-03-07T07:06:45.693 回答
6

万一有人还在迷茫。. .

有关使 IDENTITY_INSERT 与 Code-First Migration Seed() 方法一起使用所需的其他信息,请参见下文

我确实使用 Aron 的System.ComponentModel.DataAnnotations.Schema.DatabaseGenerated属性实现将模型 ID 的 DB 生成属性设置为“无”,但我仍然无法通过身份插入错误。我想我会在这里发布我的发现,以防其他人仍然遇到问题。

为了让它工作,我将种子方法的逻辑包装在一个 SQL 事务中,并用于在运行该方法context.Database.ExecuteSqlCommand("SET IDENTITY_INSERT myTable ON")之前允许插入。.AddOrUpdate()这是我的 Configuration.vb 文件(使用 Google API 类型的表作为我们的示例数据):

Imports System
Imports System.Data.Entity
Imports System.Data.Entity.Migrations
Imports System.Linq

Namespace Migrations

    Friend NotInheritable Class Configuration 
        Inherits DbMigrationsConfiguration(Of DAL.MyDbContext)

        Public Sub New()
            AutomaticMigrationsEnabled = False
            AutomaticMigrationDataLossAllowed = False
        End Sub

        Protected Overrides Sub Seed(context As DAL.MyDbContext)
            '  This method will be called after migrating to the latest version.

            Dim newContext As New MyDbContext(context.Database.Connection.ConnectionString)
            Using ts = newContext.Database.BeginTransaction()

                Try

                    ' Turn on identity insert before updating
                    newContext.Database.ExecuteSqlCommand("SET IDENTITY_INSERT GoogleApiTypeGroups ON")
                    ' Make sure the expected GoogleApiTypeGroups exist with the correct names and IDs.
                    newContext.GoogleApiTypeGroups.AddOrUpdate(
                        Function(x) x.Id,
                        New GoogleApiTypeGroup() With {.Id = 1, .name = "Google Cloud APIs"},
                        New GoogleApiTypeGroup() With {.Id = 2, .name = "YouTube APIs"},
                        New GoogleApiTypeGroup() With {.Id = 3, .name = "Google Maps APIs"},
                        New GoogleApiTypeGroup() With {.Id = 4, .name = "Advertising APIs"},
                        New GoogleApiTypeGroup() With {.Id = 5, .name = "Google Apps APIs"},
                        New GoogleApiTypeGroup() With {.Id = 6, .name = "Other popular APIs"},
                        New GoogleApiTypeGroup() With {.Id = 7, .name = "Mobile APIs"},
                        New GoogleApiTypeGroup() With {.Id = 8, .name = "Social APIs"})
                    ' Attempt to save the changes.
                    newContext.SaveChanges()
                    ' Turn off the identity insert setting when done.
                    newContext.Database.ExecuteSqlCommand("SET IDENTITY_INSERT GoogleApiTypeGroups OFF")

                    ' Turn on identity insert before updating
                    newContext.Database.ExecuteSqlCommand("SET IDENTITY_INSERT GoogleApiTypes ON")
                    ' Make sure the expected GoogleApiTypes exist with the correct names, IDs, and references to their corresponding GoogleApiTypeGroup.
                    newContext.GoogleApiTypes.AddOrUpdate(
                        Function(x) x.Id,
                        New GoogleApiType() With {.Id = 1, .name = "Google Maps JavaScript API", .GoogleApiTypeGroupId = 3})
                    ' Save the changes
                    newContext.SaveChanges()
                    ' Turn off the identity insert setting when done.
                    newContext.Database.ExecuteSqlCommand("SET IDENTITY_INSERT GoogleApiTypes ON")

                    ts.Commit()
                Catch ex As Exception
                    ts.Rollback()
                    Throw
                End Try
            End Using

        End Sub

    End Class

End Namespace
于 2016-04-17T21:48:42.990 回答
3

在对此进行研究之后,看起来是否先前已创建密钥,然后在迁移中添加 [DatabaseGenerated(DatabaseGeneratedOption.None)] 它实际上不会按照您的意图进行,您可以通过转到数据库资源管理器表来检查这一点 - > 键-> PK -> 修改并看到身份规范设置为是而不是否。

如果是这种情况,请尝试向下迁移到该表不存在的位置,然后重新迁移回来。

于 2016-05-11T22:26:35.880 回答
0

如果您使用 AutoMapper 并使用 for/foreach 模式,则必须在 for 循环中重新映射。

例子:

foreach (var item in Ids) {
    var page = Mapper.Map<Pages>(model);
    .
    .
    .
    .
    db.Pages.Add(page);
}
db.SaveChanges();
于 2017-07-19T13:45:52.240 回答