So lets say I have a sql table called "names" that has the following columns:
NAME, X, X, X
Lets say I now make a enum class:
public enum Names {
//I want all the `Name` values in the `Names` table to be the enum values
}
so if I have 3 name columns in my Names
table called Bob, Nick, Jamie
those names would become the enum values so I can call something like Names.NAME
.
Thanks.