我不知道如何从这个集合中检索第一个项目:
IGrouping<string, Plantilla> groupCast = group as System.Linq.IGrouping<string, Plantilla>;
我也尝试过:
IGrouping<string, Plantilla> firstFromGroup = groupCast.FirstOrDefault();
但不起作用,显式转换已经存在
答案 0 :(得分:9)
为什么不使用var
?
var firstFromGroup = group.First();
至于你收到错误的原因,我猜测Key或Element与你认为的不同。看一下错误消息的其余部分,看看编译器抱怨的类型。请注意,如果涉及匿名类型,获取它的唯一方法是使用var
。
答案 1 :(得分:1)
试试这个(基于你的部分解决方案):
foreach (var group in dlstPlantillas.SelectedItems)
{
var groupCast = groupCast = group as System.Linq.IGrouping<string, Plantilla>
if(groupCast == null) return;
item = groupCast.FirstOrDefault<Plantilla>();
if(item == null) return;
// do stuff with item
}
答案 2 :(得分:0)
这是我的部分解决方案:
foreach (var group in dlstPlantillas.SelectedItems)
{
IGrouping<string, Plantilla> groupCast = group as System.Linq.IGrouping<string, Plantilla>;
if (null == groupCast) return;
foreach (Plantilla item in groupCast.Take<Plantilla>(1)) //works for me
{
template.codigoestudio = item.codigoestudio;
template.codigoequipo = item.codigoequipo;
template.codigoplantilla = item.codigoplantilla;
template.conclusion = item.conclusion;
template.hallazgo = item.hallazgo;
template.nombreequipo = item.nombreequipo;
template.nombreexamen = item.nombreexamen;
template.tecnica = item.tecnica;
}
}