Enum EMode
public enum EMode
Fields
First = 3Not thread safe. Will first find an Id and then update it. Changes could happen in between.
FirstOrDefault = 2Atomic operation that is safe over several instances.
Single = 1Not thread safe. Will first find an Id and then update it. Changes could happen in between.
SingleOrDefault = 0Not thread safe. Will first find an Id and then update it. Changes could happen in between.