public void DeveloperSectors() { DCDataContext dc = new DCDataContext();
SecCB.RepeatColumns = 3; SecCB.RepeatDirection = RepeatDirection.Horizontal;
IQueryable<DeveloperSector> DevSecRe = from se in dc.DeveloperSectors orderby se.Sector_Order ascending select se;
foreach (DeveloperSector sec in DevSecRe) { SecCB.Items.Add(sec.Sector_Name); } }