EFPlus BulkInsert - 如何获取数据库生成的 ID

EFPlus BulkInsert - How to get DB-generated IDs

使用带有 IDENTITY 列的 MSSQL 作为 ID, 调用 BulkInsert 后,如何使实体 ID 与 table ID 同步?

context.BulkInsert(entities);

两者都没有达到要求的结果:

context.BulkSynchronize(entities);
context.BulkMerge(entities);

假设我们有一个实体

var newSomething = new Something { Id = 0 };

和相应的 TSQL table 列定义

ID int IDENTITY(1,1)

Entity Framework调用SaveChanges()后自动设置Id

context.SomethingSet.Add(newSomething);
context.SaveChanges();
Assert.IsTrue(newSomething.Id != 0)

另见 How can I get Id of inserted entity in Entity framework?

EFPlus 如何提供获取插入实体 ID 的方法?

免责声明:我是项目的所有者Entity Framework Extensions

Entity Framework Extensions 库应该默认已经 return 插入实体的 ID。

例如,当与 BulkInsert 一起使用时,下面的代码应该已经可以工作并且 return ids。

using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Windows.Forms;

namespace Z.EntityFramework.Extensions.Lab
{
    public partial class Form_Request_Ids : Form
    {
        public Form_Request_DateNull()
        {
            InitializeComponent();

            // CLEAR
            using (var ctx = new CurrentContext())
            {
                ctx.EntitySimples.RemoveRange(ctx.EntitySimples);
                ctx.SaveChanges();
            }

            // TEST
            using (var ctx = new CurrentContext())
            {
                var list = new List<EntitySimple>();
                list.Add(new EntitySimple() { Id = 0, IntColumn = 1, CreatedDate = DateTime.Now });

                ctx.BulkInsert(list);
            }
        }

        public class CurrentContext : DbContext
        {
            public CurrentContext()
                : base("CodeFirstEntities")
            {
            }

            public DbSet<EntitySimple> EntitySimples { get; set; }

            protected override void OnModelCreating(DbModelBuilder modelBuilder)
            {
                modelBuilder.Types().Configure(x => x.ToTable(GetType().DeclaringType != null ? GetType().DeclaringType.FullName.Replace(".", "_") + "_" + x.ClrType.Name : ""));

                base.OnModelCreating(modelBuilder);
            }
        }

        public class EntitySimple
        {
            public int Id { get; set; }

            public int IntColumn { get; set; }

            public DateTime CreatedDate { get; set; }
        }
    }
}

如果您仍然遇到问题,请尝试直接联系我们并提供示例信息@zzzprojects.com 或post 您在此处的示例。