I select query then convert it to dictionary contains key and value i fill combobox with this dictionary but i want to update the select collection not select new query every time
example: first time select query and fill combobox second time check if data in database has changed reselect or update the selected collection
var db = new Smart_M_DataDataContext();
if (db.DatabaseExists())
{
Employeeinf = (from a in db.Employees select new { a.Employee_ID, a.Employee_Name }).ToDictionary(c => c.Employee_ID, c => c.Employee_Name);
}
combobox.itemsource=Employeeinf ;
how to update Employeeinf object if data has Changed in table