private IQueryable<LocalEmployee> FindEmployeeByName(string Name)
{
EmployeeDataContext db = new EmployeeDataContext();
return from table1 in db.Employees
where table1.Name == Name
orderby table1.Name
select new table2
{
tbl2_ID=table1.tbl2_ID,
Name = table2.Name,
};
}