I ponder this question from time to time, so I thought I'd ask you guys about it.
Let's say I have a database table that looks like this:
Table: Visibility
Id Value
-- -----
0 Visible
1 Invisible
2 Collapsed
This is just a table for ensuring referential integrity. It is basically an enum stored in the database for the purposes of ensuring that any Visiblity values that appear in other tables are always valid.
Over in my front end, I have some choices.
- I could query this table and store it in, say, a
Dictionary<string, int>
or aDictionary<int, string>
. I could write an enum by hand and just manually edit the values in the rare event that there is a change to the table. E.g.,
public enum Visiblity { Visible, Invisible, Collapsed }
- Something else????
Which would you advise and why?
Thanks.