我有一个数据列表,我想使用该数据在表中搜索。查询工作正常,但它不保留以前的数据。有什么解决方案吗?
这是代码:
foreach (string Id in LstID)
{
GdEmp.DataSource = employee.ShowData(Id);
GdEmp.DataBind();
}
这是查询:
public class Employee
{
public string family { get; set; }
public string name { get; set; }
....
public List<Employee> ShowData(string Id)
{
try
{
var Query = from P in Bank.employee
where P.Id == Id
select new Employee
{
family = P.Family,
name= P.Name,
...
};
return Query.ToList();
}
}