不包含 GroupBy 的定义

本文关键字:定义 GroupBy 包含 | 更新日期: 2023-09-27 18:26:55

public struct CardGrouping
    {
        public string Name { get; set; }
        public int Count { get; set; }
    }
    public List<CardGrouping> GetCardGrouping(IQueryable<Areas.RetailShop.Models.FPSinformation> queryable, Expression<Func<Areas.RetailShop.Models.FPSinformation, string>> groupingFunction)
    {
        return queryable.GroupBy(groupingFunction)
                .Where(x => x.Key != null)
                .Select(x => new CardGrouping
                {
                    Name = x.Key,
                    Count = x.Sum(groupingFunction)
                }).ToList();
    }

我正在尝试做这样的事情,但收到错误

IQueryable<FPSinformation>不包含"分组依据"的定义 和最好的扩展方法重载 ParallelEnumerable.GroupBy<string, int>(ParallelQuery<string>, Func<string, int>)需要 ParallelQuery<string> 型接收器

我做错了什么?

编辑

var data1 = fpslist.GroupBy(x => x.Ration_Card_Type1)
                .Select(x => new
                {
                    CardType_Name = x.Key,
                    CardType_Count = x.Sum(y => y.Ration_Card_Count1)
                }).ToList();

这是我试图优化的实际代码

不包含 GroupBy 的定义

将字符串更改为 Areas.RetailShop.Models.FPSinformation in fun

public List<CardGrouping> GetCardGrouping(List<Areas.RetailShop.Models.FPSinformation> queryable,
        Expression<Func<Areas.RetailShop.Models.FPSinformation, string>> groupingFunction,
        Func<Areas.RetailShop.Models.FPSinformation, int> sumFunction)
    {

        if (queryable.AsQueryable() != null)
        {
            var data = queryable.AsQueryable().GroupBy(groupingFunction).Where(x => x.Key != null).Select(x => new CardGrouping
            {
                Name = x.Key == null ? "" : x.Key.ToString(),
                Count = x.Sum(sumFunction)
            }).ToList();
            return data;
        }
        return null;
    }

此代码有 2 个问题。

首先,要使其编译,groupingFunction应该是一个Func<FPSinformation, int> - 输入的类型不是string,而是FPSinformation

此更改将使其编译,但编译器将选择Enumerable.GroupBy扩展方法。Queryable.GroupBy需要一个Expression<Func>参数,而不是一个Func - 所以它应该是Expression<Func<FPSinformation, int>>

public List<CardGrouping> GetCardGrouping(IQueryable<FPSinformation> queryable, 
                             Expression<Func<FPSinformation, int>> groupingFunction)

您按int对其进行分组,因此.Where(x => x.Key != null)没有意义 - x.Key不能为空。