Sie könnten alle Eigenschaften, die Sie aktualisieren/einfügen möchten, durchgehen und dies für jede Eigenschaft tun:
UpdateDefinition<Site> upsert = null;
if (properties.Any())
{
var firstprop = properties.First();
upsert = Builders<Site>.Update.Set(nameof(Site.Properties) + "." + firstprop.Key,
firstprop.Value);
foreach (var updateVal in properties.Skip(1))
{
upsert = upsert.Set(nameof(Site.Properties) + "." + updateVal.Key,
updateVal.Value);
}
collection.UpdateOne(r => r.Id == "YourId", upsert,
new UpdateOptions { IsUpsert = true });
}
Frühere Version der Antwort mit mehreren Aktualisierungen:
foreach (var updateVal in properties)
{
collection.UpdateOne(r => r.Id == "YourId",
Builders<Site>.Update.Set( nameof(Site.Properties)+ "." + updateVal.Key,
updateVal.Value),
new UpdateOptions { IsUpsert = true});
}
Beachten Sie, dass nur neue Schlüssel/Werte hinzugefügt oder vorhandene aktualisiert werden, dies wird nichts entfernen.