To avoid this error use below code:
  1. GVEmployee.DataSource = (from em in context.Employee
  2. select new { em.Emp_ID, em.Name, em.City,
  3. em.Country, em.State }).ToList();
  4. VEmployee.DataBind();