PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

Entity Framework Core — wydajny sposób aktualizowania jednostki, która ma elementy podrzędne na podstawie reprezentacji JSON encji przekazywanej za pośrednictwem internetowego interfejsu API

Pracujesz z wykresami odłączonych jednostek. Oto sekcja dokumentacji które mogą Cię zainteresować.

Przykład:


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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Grupowanie według daty, z 0, gdy count() nie daje żadnych wierszy

  2. Railsy has_many :przez PG::Error:ERROR:identyfikator odniesienia do kolumny jest niejednoznacznym błędem

  3. Postgres łączący wiele indeksów

  4. Zapytanie o ostatnie rozmowy do skrzynki odbiorczej użytkownika

  5. Tworzenie indeksu Gin z Trigramem (gin_trgm_ops) w modelu Django