I have an enum, which:
- is included in my class as a property
- it represents some values from a database table (a couple of types)
- it is displayed in DropBox, so that it can be used as a filter
Now I would like to add 'All' (or 'None' for example) value to this DropBox.
How should I do this:
- add 'All' value to Enum?
- add 'All' value to DropBox, change type of my property from Enum to String
- some other option...