0

我想从列表中删除已使用的项目以填充下拉列表

private void SetAvailableCodes(IEnumerable<ProductCodeVm> productCodes)
{
    var availableCodes = from item in Enum.GetNames(typeof(ProductCodeType))
                         where item != ProductCodeType.None.ToString()
                         select new
                         {
                             Id = (int)((ProductCodeType)Enum.Parse(typeof(ProductCodeType), item)),
                             Name = item
                         };
    // Todo remove productCodes.ProductCodeType 
    this.ViewData["CodeList"] = availableCodes;
}

public class ProductCodeVm
{
    public int Id { get; set; }        
    public int ProductId { get; set; }        
    public ProductCodeType ProductCodeType { get; set; }     <--- Enum  
    public string Value { get; set; }       
}

有没有办法使用 linq 来实现这一点,或者我需要做一些转换,还是别的什么?

可用代码来自 Db

// Add codes
var codes = ProductCodeManager.GetByProductId(model.Id);
model.ProductCodes =
codes.Select(
    c =>
    new ProductCodeVm
    {
        ProductCodeType = c.ProductCodeType,
        Value = c.Value,
        ProductCodeId = c.ProductCodeId
    });
this.SetAvailableCodes(model.ProductCodes);

可用代码仅用于填充 dropdownlist(id,name)

this.ViewData["CodeList"] = availableCodes;
4

2 回答 2

5

您可以使用except()

IEnumerable<string> remainingList = allItemsList.Except(usedItemList);
于 2013-10-29T11:38:22.613 回答
0

假设这是要过滤掉的代码列表,则过滤而不是字符串productCodes会更容易,因此您无需进行太多解析:

var availableCodes = 
    Enum.GetValues(typeof(ProductCodeType))
        .Except((int)ProductCodeType.None)
        .Except(productCodes.Select( p => p.Id)
        .Select(p => new {
                              Id = p;
                              Name = ((ProductCodeType)p).ToString();
                         }   
于 2013-10-29T11:45:51.283 回答