Base solution for your next web application
Open Closed

RAD Tool inconsistent list of enum #6884


User avatar
0
timmackey created

When adding a new property of type 'enum', the drop-down list of enum types presents some of my custom enums and not others. All my enum files are in the same folder and are the same namespace in *.Core.Shared. How does RAD tool determine which enums to include in its drop-down list, and which enums to ignore?


4 Answer(s)
  • User Avatar
    0
    yekalkan created

    I've created some different enum examples but couldn't reproduce your issue.

  • User Avatar
    0
    timmackey created

    Upon further investigation it seems that the tool can't handle binary.

    namespace ngTTM.TtmDataModel
    {
        public enum TtmSampleEnum
        {
    
            Undefined = 0,
    
            HasGuid = 0b0__0000_0100_0000_0000,
            NooGuid = 0b0__0000_0000_0000_0000,
    
        }
    }
    
    
  • User Avatar
    0
    timmackey created

    Unintentionally closed. Would like to see a solution.

  • User Avatar
    0
    yekalkan created

    We won't support that.