I've looked for this everywhere and the examples are of converting a column to a scalar or something. I just want to know if following is possible:
Take a table e.g. Request and associated it with a table called RequestStatus, which has 2 columns: Id, Status and has 4 rows with different statuses.
Some how tell EF5 that RequestStatus table should actually generate an enum in c# side so I can do something like: Request.RequestStatus == RequestStatus.New
Every time I compile, it should update the RequestStatus Enum based on the table in the db specified in the connection string.
Is this possible?