PROGRU1GRU2

Definisce il legame tra gli articoli e gruppi delle varianti.


Esempio

1
2
3
4
5
'ABITO','000002','000004'
'CAMICIA','000001','000003'
'0001','000005','000006'
'0002','000005','000006'
'0003','000007','000008'

<?xml version="1.0" encoding="utf-8"?>
<TABELLA_PROGRU1GRU2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
  <PROGRU1GRU2>
    <CodiceArticolo />
    <CodiceGruppo1 />
    <CodiceGruppo2 />
  </PROGRU1GRU2>
</TABELLA_PROGRU1GRU2>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public partial class PROGRU1GRU2
{
    [Indexed(Name = "IX_PK_PROGRU1GRU2", Order = 1, Unique = true), MaxLengthAttribute(25)]
    public string CodiceArticolo { get; set; }
 
 
    [Indexed(Name = "IX_PK_PROGRU1GRU2", Order = 2, Unique = true), MaxLengthAttribute(20)]
    public string CodiceGruppo1 { get; set; }
 
 
    [Indexed(Name = "IX_PK_PROGRU1GRU2", Order = 3, Unique = true), MaxLengthAttribute(20)]
    public string CodiceGruppo2 { get; set; }
 
 
}

Documentazione Zippy Infinity