hi
this is my sample
when checked multiple item in CheckComboBox
but only one checked item CheckComboBox save to database
how to save All checked items CheckComboBox to database?
thanks
Comments: ** Comment from web user: BoucherS **
this is my sample
when checked multiple item in CheckComboBox
but only one checked item CheckComboBox save to database
how to save All checked items CheckComboBox to database?
thanks
Comments: ** Comment from web user: BoucherS **
Hi,
You also have to modify the Document class :
Replace
```
public virtual Person Person { get; set; }
```
with
```
public virtual ObservableCollection<Person> Persons { get; set; }
```