如何在EF Core中从JSON更新实体

时间:2019-12-04 05:19:37

标签: c# json ef-core-3.0

我正在将数据从EF核心序列化为JSON文件。我的模型和配置:

public class Customer
{
    [Key]
    public Guid Id { get; set; }
    public string Name { get; set; }
    public virtual ICollection<Order> Orders { get; set; }
}

public class Order
{
    [Key]
    public Guid Id { get; set; }
    public Guid CustomerGuid { get; set; }

    [JsonIgnore]
    public virtual Customer Customer { get; set; }

    public string OrderType { get; set; }
}

    public class CustomerConfiguration : IEntityTypeConfiguration<Customer>
    {
        public void Configure(EntityTypeBuilder<Customer> builder)
        {
            builder.HasMany(p => p.Orders).WithOne(d => d.Customer).HasForeignKey(d => d.CustomerGuid);
        }
    }
    public class OrderConfiguration : IEntityTypeConfiguration<Order>
    {
        public virtual void Configure(EntityTypeBuilder<Order> builder)
        {
            builder.HasOne(p => p.Customer).WithMany(p => p.Orders).HasForeignKey(d => d.CustomerGuid);
        }
    }

我将一位客户序列化为JSON文件:

  {
  "Id": "18a55fea-89cd-438a-bae0-4954193807bf",
  "Name": "Customer1",
  "Orders": [
    {
      "Id": "f253837f-5428-405a-880e-2af2b597094c",
      "CustomerGuid": "18a55fea-89cd-438a-bae0-4954193807bf",
      "OrderType": "OrderType1"
    },
    {
      "Id": "0a288fe3-0a00-4372-810f-3d682f82f1dc",
      "CustomerGuid": "18a55fea-89cd-438a-bae0-4954193807bf",
      "OrderType": "OrderType2"
    },
    {
      "Id": "0df4a724-598c-44d7-a6eb-4d597501520f",
      "CustomerGuid": "18a55fea-89cd-438a-bae0-4954193807bf",
      "OrderType": "OrderType0"
    }
  ]
}

现在,我将JSON文件中的"Name": "Customer1"更改为"Name": "Customer2",并且我也想从EF core更新数据库。我希望具有"Id": "18a55fea-89cd-438a-bae0-4954193807bf"的{​​{1}}的DB客户是Name。我可以使用此ID删除客户并创建新客户,但我想对其进行更新。在这种情况下,我可以这样做:

Customer2

但是除了 var customerFromJson = JsonConvert.DeserializeObject<Customer>(json); var customerFromDB = context.GetEntities<Customer>().Single(c => c.Id == customerFromJson.Id); customerFromDB.Name = customerFromJson.Name; context.SaveChanges(); 属性之外,还有其他属性,我不想手动执行此操作。有什么好的解决方案,硬编码或其他方法可以解决此问题?

2 个答案:

答案 0 :(得分:3)

我建议为此使用AutoMapper。因此,您获得了实体,并将json对象中的所有字段映射为:

mapper.Map(customerFromJson, customerFromDB);
context.SaveChanges();

答案 1 :(得分:0)

没有简单的方法可以做到这一点。就像Gleb提到的那样,您可以使用automapper(请耐心等待),但要小心。

您json中不存在的值将变为null,并将这些null值复制到数据库中。因此,不要忘记添加条件。 How to ignore null values for all source members during mapping in Automapper 6?

另一种方法是使用反射并根据json检查目标中存在哪些属性。这就是automapper要做的。

即使如此,这两种解决方案都使用反射,这会导致性能下降。您的几列解决方案最有意义。