我有两门小组和运动员小组。
public class PlayerTeams
{
public int ID { get; set; }
public string PlayerName { get; set; }
public string PlayerCountry { get; set; }
public bool IsActive { get; set; }
public string PlayerTeam { get; set; }
}
public class Players
{
public int ID { get; set; }
public string Name { get; set; }
public string Country { get; set; }
public bool? Status { get; set; }
}
页: 1 运动员名称/编码,按<代码>PlayerTeam加以分类。
var groupedPlayers = teams
.OrderBy(x => x.PlayerName)
.GroupBy( x => x.PlayerTeam)
.ToList();
其类型如下:<代码>List<IGrouping<string,sexualTeams>>,但我希望该代码为List<Igrouping<string, Hawaiis>>
,因为我不想在每一行中提供多余的关键信息。
我如何能够做到这一点? 我只能想像<条码>。 我也未能做到这一点。
是否有这样做的可信方法?