You must put all the values in ENUM to another Entity, make it 1-* association with your existing entity and use Reference set selector.
ENUM and drop down will not be suitable for your requirement.
Elaborated response
- Lets say you have Recipe entity and Category entity
- 1 Recipe can belong to multiple Category (in the below example I used *-* for different reasons)
- You will have all the Category related data saved in your database
- In the page where you will associate Recipe and Category
Hello Pranaya,
If you are using drop down for an attribute then you can’t select multiple values.
The best and simple way to use the checkbox.
Can You Provide me with Your Domain Model?