具有相同键的项目已存在

问题描述 投票:0回答:1

LINQ相当新,无法理解为什么我收到此错误:

已添加具有相同键的项目。

我在想,因为我使用了选择的lambda表达式3次?否则,从代码中,我无法看到如何多次分配任何属性。有没有更好的方法来写这个和解释?谢谢。

视图模型:

public class AwardWinnersViewModel
{
    public int WinnerId { get; set; }
    public string AwardName { get; set; }
    public DateTime StartDate { get; set; }
    public string Contact { get; set; }
    public int Type { get; set; }
    public int JurisdictionRef { get; set; }
    public int WorkareaRef { get; set; }
    public string Jurisdiction { get; set; }
    public string Workarea { get; set; }
    public string LogoUrl { get; set; }

}

public class AwardWinnersWrapperVM
{
    public IEnumerable<KeyValuePair<short, string>> JurisdictionFilter { get; set; }
    public IEnumerable<KeyValuePair<int, string>> WorkareaFilter { get; set; }
    public IEnumerable<AwardWinnersViewModel> AwardWinners { get; set; }
    public int Page { get; set; }
    public int WinnersPerPage { get; set; }
    public bool HasPrevious { get; set; }
    public bool HasNext { get; set; }
    public int TotalWinners { get; set; } 
    public int? ResultsOutOf { get => (this.WinnersPerPage * (this.Page + 1)) < this.TotalWinners ? (this.WinnersPerPage * (this.Page + 1)) : this.TotalWinners; }
    public int NumberOfPips { get => this.TotalWinners / WinnersPerPage; }
    public int? SelectedJurisdiction { get; set; }
    public int? SelectedWorkarea { get; set; }

}

控制器:

[HttpGet]
public async Task<ActionResult> Index(int? page, int? additionalJurisdictionSearch, int? additionalWorkareaSearch)
{
    var awardWinners = await awardWinnersService.GetAwardWinnersAsync();
    var jurisdictions = contentMetadataService.GetJurisdictions();
    var workareas = contentMetadataService.GetWorkareas();
    int pageNumber = page ?? 0;

    var viewModel = new AwardWinnersWrapperVM
    {
        TotalWinners = awardWinners.Count(),
        WinnersPerPage = winnersPerPage,
        Page = pageNumber,
        HasPrevious = pageNumber > 0,
        HasNext = awardWinners.Count() > (winnersPerPage * (pageNumber + 1)),

        AwardWinners = awardWinners.Select(x => new AwardWinnersViewModel
        {
            Type = x.Type,
            Contact = (x.Type == 1)
                ? x.WinnerId != 0 ? contributorService.GetContributor(x.WinnerId, true)?.DisplayName : string.Empty
                : x.WinnerId != 0 ? authorService.GetByRef(x.WinnerId, true)?.AuthorName : string.Empty,
            StartDate = x.StartDate,
            AwardName = x.AwardName,
            Jurisdiction = x.Jurisdiction,
            Workarea = x.Workarea,
            LogoUrl = (x.Type == 1)
                ? contributorService.GetContributor(x.WinnerId, true)?.LogoImageUrlCDN
                : authorService.GetByRef(x.WinnerId, true)?.PhotoUrl,
        }),
        JurisdictionFilter = awardWinners.Select(x => new { id = x.JurisdictionRef, display = (jurisdictions.TryGetValue((short)x.JurisdictionRef, out var jurisdiction) ? jurisdiction.JurisdictionName : string.Empty) }).ToDictionary(key => (short)key.id, val => val.display),
        WorkareaFilter = awardWinners.Select(x => new { id = x.WorkareaRef, display = (workareas.TryGetValue(x.WorkareaRef, out var workarea) ? workarea.WorkareaName : string.Empty) }).ToDictionary(key => key.id, val => val.display)
        .Skip(winnersPerPage * (pageNumber - 1))
        .Take(winnersPerPage)
    };

    return View(viewModel);
}
c# list linq controller viewmodel
1个回答
2
投票

如果你的任何awardWinners分享jurisdictionRefworkareaRef,那么ToDictionary()要求JurisdictionFilterWorkareaFilter将失败,除此之外。

我想你只想抓住你的滤盒的不同的管辖区/工作区(这可能是在.Distinct()之前使用ToDictionary实现的)。

© www.soinside.com 2019 - 2024. All rights reserved.