I have an entity called History which is tied to an Order entity. History has a property called Operation. All possible values for this property comes from an enum that goes like this: public enum Operations { ItemAdded, ItemRemoved, SupplierChanged // and so on… } These are the operations through which that history record wasRead more