This is my Model Class where we have a Type which could be a Zombie or Human
public class User { public int ID { get; set; } public string Name { ge
It's not a good idea to store them as string but you can create look up tables for your enums with ef enum to lookup and it is very easy to use.