sql >> Database teknologi >  >> RDS >> PostgreSQL

Entity Framework Core - effektiv måde at opdatere Entitet, der har børn baseret på JSON-repræsentation af enheden, der sendes ind via Web API

Du arbejder med grafer over afbrudte enheder. Her er dokumentationsafsnittet der kan være af interesse for dig.

Eksempel:


var existingCustomer = await loyalty.Customer
    .Include(c => c.ContactInformation)
    .Include(c => c.Address)
    .Include(c => c.MarketingPreferences)
    .Include(c => c.ContentTypePreferences)
    .Include(c => c.ExternalCards)
    .FirstOrDefault(c => c.McaId == customer.McaId);

if (existingCustomer == null)
{
    // Customer does not exist, insert new one
    loyalty.Add(customer);
}
else
{
    // Customer exists, replace its property values
    loyalty.Entry(existingCustomer).CurrentValues.SetValues(customer);

    // Insert or update customer addresses
    foreach (var address in customer.Address)
    {
        var existingAddress = existingCustomer.Address.FirstOrDefault(a => a.AddressId == address.AddressId);

        if (existingAddress == null)
        {
            // Address does not exist, insert new one
            existingCustomer.Address.Add(address);
        }
        else
        {
            // Address exists, replace its property values
            loyalty.Entry(existingAddress).CurrentValues.SetValues(address);
        }
    }

    // Remove addresses not present in the updated customer
    foreach (var address in existingCustomer.Address)
    {
        if (!customer.Address.Any(a => a.AddressId == address.AddressId))
        {
            loyalty.Remove(address);
        }
    }
}

loyalty.SaveChanges();




  1. Postgres-forbindelsen er langsom fra PHP

  2. Sammenkæd og grupper flere rækker i Oracle

  3. Tegnsæt mismatch fejl i Oracle

  4. SQL Server 2017 Backup -1