• 通过反射,如何将数值型枚举值赋值给枚举类型的属性


    //处理可空枚举类型:原理它是值类型,原始写法是Nullable<EnumX>,泛型可以有多个类型参数,但数据库的一个栏位只会有一个类型,所以判断第一个类型参数是否是枚举
                            if (prop.PropertyType.IsValueType &&
                                prop.PropertyType.IsGenericType &&
                                prop.PropertyType.GetGenericTypeDefinition().Equals(typeof(Nullable<>)) &&
                                prop.PropertyType.GetGenericArguments()[0].IsEnum
                                )
                            {
                                var enumValue = Enum.Parse(prop.PropertyType.GetGenericArguments()[0], v + "");
                                prop.SetValue(res, enumValue, null);
                            }

    以上举例代码属性的类型是一个可空枚举类型。

    枚举类型是一个泛型,且泛型的Type定义是Nullable<>

    [0]是泛型的第一个参数。

    如该属性如下

            public Gender? Gender { get; set; }

    这是缩写写法,完整写法是

            public Nullable<Gender> Gender { get; set; }

    所以可空枚举类型的泛型参数有且仅有一个参数,直接写索引0[0]不会有问题了。(泛型至少会有一个参数)

    要判断Gender是不是枚举类型,然后才需要用Enum.Parse把数字转成泛型的第一个参数的类型

  • 相关阅读:
    jetnuke v1.2安装
    Java Gaming Resources
    @MyEclipse启动Tomcat时Console不显示(已解决+配图)
    在JXSE中,DHT=SRDI
    LINQ 学习笔记9 Kevin
    LINQ 学习笔记6 Kevin
    C# 中自定义事件 Kevin
    LINQ 学习笔记7 Kevin
    C#调用浏览器(默认和非默认浏览器) Kevin
    Section1 Agile Development Kevin
  • 原文地址:https://www.cnblogs.com/langu/p/5390001.html
Copyright © 2020-2023  润新知