2

我为我的枚举创建了 Enum ToFrendlyString 函数,但我不能在 Linq 中使用。

 public enum MyEnum
    {

        Queued = 0,           
        [Description("In progress")]
        In_progress = 2,            
        [Description("No answer")]
        No_answer = 6,

    }



  public static class EnumToFrendlyString
    {

        public static string ToFrendlyString(this Enum value)
        {
            return value.GetEnumDescription();
        }


        public static string GetEnumDescription(this Enum value)
        {
            FieldInfo fi = value.GetType().GetField(value.ToString());

            var attributes =
                (DescriptionAttribute[])fi.GetCustomAttributes(
                    typeof(DescriptionAttribute),
                    false);

            if (attributes.Length > 0)
                return attributes[0].Description;

            return value.ToString();
        }
    }

当我尝试在 Linq 中使用此功能时,我收到错误

  var res = collection.AsQueryable().Where(p => p.UserID == UserID).OrderByDescending(p=> p.DateCreated).Select(p => new MyClass
                {                          
                     Date = p.DateCreated.ToString(),
                     Status = p.Status.ToFrendlyString(),                        
                }).Take(10).ToList();

如果我在同一个类中创建另一个函数,比如

 private string MyStatusToString(MyEnum status)
       {
           return status.ToFrendlyString();
       }

并更改我的 Linq 以使用此功能,然后一切正常。

错误

Expression of type 'DAL.MyEnum' cannot be used for parameter of type 'System.Enum' of method 'System.String ToFrendlyString(System.Enum)'
4

3 回答 3

2

我不确定您是否可以将Enum其用作此类扩展方法的类型 - 请改用此方法。我冒昧地整理了一下代码,请随意忽略这些更改 :)

public static class EnumToFrendlyString
{
    public static string ToFrendlyString<T>(this T value)
        where T : struct
    {
        return value.GetEnumDescription();
    }

    public static string GetEnumDescription<T>(this T value)
        where T : struct
    {
        return EnumDescriptionCache<T>.Descriptions[value];
    }

    private static class EnumDescriptionCache<T>
        where T : struct
    {
        public static Dictionary<T, string> Descriptions =
            Enum.GetValues(typeof(T))
                .Cast<T>()
                .ToDictionary(
                    value => value,
                    value => value.GetEnumDescriptionForCache());
    }

    private static string GetEnumDescriptionForCache<T>(this T value)
        where T : struct
    {
        if (!typeof(T).IsEnum)
        {
            throw new ArgumentException("Only use with enums", "value");
        }

        var descriptionAttribute = typeof(T)
            .GetField(value.ToString())
            .GetCustomAttributes(typeof(DescriptionAttribute), false)
            .Cast<DescriptionAttribute>()
            .FirstOrDefault();

        return (descriptionAttribute != null)
            ? descriptionAttribute.Description
            : value.ToString();
    }
}

我添加了一个私有的通用类来缓存枚举成员的描述,以避免大量运行时使用反射。它看起来有点奇怪进出类首先缓存然后检索值,但它应该可以正常工作:)

我在这个答案中给出的警告仍然适用 - 传递给字典的枚举值未经过验证,因此您可以通过调用((MyEnum)5367372).ToFrendlyString().

于 2013-02-01T18:04:17.533 回答
0

我不确定,但可能是您尚未将 DAL 项目添加到当前项目中(添加参考 -> 解决方案中的项目 -> Dal)。那么它可能会起作用。(我曾经遇到过类似的问题,这是我的解决方案)

于 2013-02-01T17:38:35.527 回答
0

似乎问题在于您的集合是IQueryable<T>并且查询提供程序正在尝试将您Select()转换为查询字符串。

避免这种情况的一种方法是Select()在内存中使用IEnumerable<T>

var res = collection.AsQueryable()
            .Where(p => p.UserID == UserID)
            .OrderByDescending(p=> p.DateCreated)
            .Take(10)
            .AsEnumerable()
            .Select(p => new MyClass
            {                          
                 Date = p.DateCreated.ToString(),
                 Status = p.Status.ToFrendlyString(),                        
            })
            .ToList();
于 2013-02-01T19:07:29.707 回答