I have this type PersonInformation with "General" Value. I add two records: one string and one date.
type PersonInformation
{
Value: General;
}
I tried this code:
PersonInformations:PersonInformation*
{
{ Value=>"Schuhmacher"},
{ Value=>2001-12-21}
}
But date was added as 'string'. Now I define one temporaty date and add it to table. It's work but I hope that exist better solution?
tmp:Date=>2001-12-21;
PersonInformations:PersonInformation*
{
{ Value=>"Schuhmacher"},
{ Value=>tmp}
}