Size/Multiple

Docs

Multiple options can be displayed by setting the Size property to the number options to be displayed and setting the MultipleSelect property allows multiple rows to be selected.

Razor
                                
                                        
DbNetComboCore customerCombo = new DbNetComboCore("northwind", "customers", "customerid", "companyname", "customerCombo") { Size = 20, MultipleSelect = true };
customerCombo.Bind(EventType.OnOptionSelected, "showSelectedCustomer");
@customerCombo.Render()