I have created a class in order to save MyStyles into the database. While I'm doing the Migration and Update to Database I can see the PK StyleId, but I can't find the way to persist the Color Tuple.
This is the code of my class....
public class MyStyle {
public int StyleId{ get; set; }
(...)
public Tuple<int, int, int> Color { get; set; }
}
Is there any way to persist the System.Tuple class?