You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my project I need to insert entity if it does not exist yet, or update it otherwise (somewhat like UPSERT in mongodb). As I understand in SQL it can be accomplished using MERGE, but I was not able to find MERGE in EF Core.
In my project I need to insert entity if it does not exist yet, or update it otherwise (somewhat like
UPSERTin mongodb). As I understand in SQL it can be accomplished usingMERGE, but I was not able to findMERGEin EF Core.