I have a simple select list being generated in my action method (code below)
Viewbag.Select = new SelectList(db.esp_admin_form_demographics.Where(x => x.category == (int) SelectHelper.ClientSelectOptions.Demographics.BirthCountry || x.category == 999), "id", "value", "");
How is it possible to add a placeholder value in there as the default value?