I have a strange situation I need to persist:
public class Person
{
public string[] Nicknames { get; set; }
}
What mapping and table structur
You can use some logic of yours to achieve the same thing right.. probably adding your own delimiter between the nicknames and then split it by this delimiter once you read it into memory.
public class Person
{
public string Nicknames { private get; set; }
public string[] ArrayOfNicknames
{
get
{
return Nicknames.Split();
}
}
}