Say, the field of Race in my table has values like "W,A" (white and asian), "H, W" (hispanic and white), "I" (Indian only).
How can I use Entity Framework to build this field into:
public string[] Race {get;set;}
or
public List<string> Race {get;set;}
instead of
public string[] Race {get;set;}?
I believe it should be possible. Can someone here help me? Thank you.