这是我在应用程序中使用的代码,但我对这里需要ilist接口和使用iqueryable 感到困惑。它们的确切定义是什么?
private IList<Emp2> getcountry()
{
IList<Emp2> countryList = null;
using (CountryDataContext context = new CountryDataContext(ConnectionString))
{
IQueryable<Emp2> query = from c in context.Emp where c.EmpName=="ss"select c;
countryList = query.ToList();
}
return countryList;
}