I want to store enum label rather than enum value in my DB side. for example i have one base enum "Status" value of this enum is (0 for Open , 1 for Closed ). in DB i want to store open and closed instead of 0 or 1. i found one code for the same. if this is the correct way to implement , in which method i should write this code. Please advice if there is any other way to achieve it
SysDictEnum dictEnum = new SysDictEnum( enumnum(InventTransType) );
dictEnum.value2Label(InventTrans.TransType);