将MSSQL与IDENTITY列用于ID, 在调用BulkInsert后,如何让实体ID与表ID同步?
context.BulkInsert(entities);
两者都没有达到要求的结果:
context.BulkSynchronize(entities);
context.BulkMerge(entities);
假设我们有一个实体
var newSomething = new Something { Id = 0 };
和相应的TSQL表列定义
ID int IDENTITY(1,1)
实体框架在调用SaveChanges()
后自动设置Idcontext.SomethingSet.Add(newSomething);
context.SaveChanges();
Assert.IsTrue(newSomething.Id != 0)
另见How can I get Id of inserted entity in Entity framework?
EFPlus如何提供获取插入实体ID的方法?
答案 0 :(得分:0)
免责声明:我是该项目的所有者Entity Framework Extensions
默认情况下,Entity Framework Extensions
库应该返回插入实体的ID。
例如,以下代码应该已经可以使用并在使用BulkInsert时返回id。
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; }
}
}
}
如果您仍有问题,请尝试直接与我们联系,并提供示例info@zzzprojects.com或在此处发布您的示例。