CARATTERISTICHE

Definisce la lista delle caratteristiche

#COLONNADECRIZIONETIPOLENNOTE
1CODICECodice CaratteristicaStringa50
2DescrizioneDescrizione CaratteristicaStringa250

Esempio

'001','Fresco'
'002','Surgelato'
'003','Bio'
'004','Vegano'


<?xml version="1.0" encoding="utf-8"?>
<TABELLA_CARATTERISTICHE xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
  <CARATTERISTICHE>
    <CODICE/>
    <Descrizione/>
  </CARATTERISTICHE>
</TABELLA_CARATTERISTICHE>
    public partial class CARATTERISTICHE
    {
        [PrimaryKey, MaxLengthAttribute(50)]
        public string CODICE{ get; set; }


        [MaxLengthAttribute(250)]
        public string Descrizione{ get; set; }

      

    }



Documentazione Zippy Infinity