What happened to AddOrUpdate in EF 7 / Core?

后端 未结 11 1289
暖寄归人
暖寄归人 2020-12-16 09:30

I\'m writing a seed method using EntityFramework.Core 7.0.0-rc1-final.

What happened to the AddOrUpdate method of DbSet?

11条回答
  •  余生分开走
    2020-12-16 10:07

    There is an extension method Upsert.

    context.Upsert(new Role { Name = "Employee", NormalizedName = "employee" })
           .On(r => new { r.Name })
           .Run();
    

    On Github

提交回复
热议问题