public IEnumerable<Tim_LinqTable> GetClassID(int p_id)
{
var query =from c inthis.Tim_LinqTables
where c.Parent == p_id
select c;
return query.ToList().Concat(query.ToList().SelectMany(t => GetClassID(t.Id)));
}
return 这句有错误。为什么呢 搞定提高悬赏 谢谢
- 2 回答
- 0 关注
- 1786 浏览
添加回答
举报
0/150
提交
取消