scrapbook.qujck.com
Text enums with the Entity Framework / Code First in C#
One of the projects I am working on requires enumerated values be text and not numeric. maritalStatus = ‘Single’ instead of maritalStatus = 1 Below is an example. All of the code is gen…