I have a set of enumerations
public enum SyncRequestTypeEnum
{
ProjectLevel=1,
DiffSync=2,
FullSync=3
}
I want to display these enumerations in a dropdown list other than ProjectLevel. Can I get this data using linq? Can anyone help with this?
source
share