public ???? test()
{
    var context = new xxxxentities();    var query = (from n in context.test
              select new 
              {
                n.tkey,n.tvalue
               }).tolist();
    return query;
}请问返回类型应写什么?