リフレクションを介してnull許容プロパティのタイプを見つける


83

リフレクションを介してオブジェクトのプロパティを調べ、各プロパティのデータ型の処理を続行します。これが私の(縮小された)ソースです:

private void ExamineObject(object o)
{
  Type type = default(Type);
  Type propertyType = default(Type);
  PropertyInfo[] propertyInfo = null;

  type = o.GetType();

  propertyInfo = type.GetProperties(BindingFlags.GetProperty |
                                    BindingFlags.Public |
                                    BindingFlags.NonPublic |
                                    BindingFlags.Instance);
  // Loop over all properties
  for (int propertyInfoIndex = 0; propertyInfoIndex <= propertyInfo.Length - 1; propertyInfoIndex++)
  {
    propertyType = propertyInfo[propertyInfoIndex].PropertyType;
  }
}

私の問題は、null許容プロパティを新たに処理する必要があるということですが、null許容プロパティの型を取得する方法がわかりません。


私はここで試す価値のある良い答えを見つけます!!
Yitzhak Weinberg

回答:


130

考えられる解決策:

    propertyType = propertyInfo[propertyInfoIndex].PropertyType;
    if (propertyType.IsGenericType &&
        propertyType.GetGenericTypeDefinition() == typeof(Nullable<>))
    {
      propertyType = propertyType.GetGenericArguments()[0];
    }

2
Nullablesの正しいチェックについては、MSDN(msdn.microsoft.com/en-us/library/ms366789.aspx)にも記載されています。そこでは、必要に応じて、トピックに関するいくつかのリソースを見つけることができます。
オリバー

76
一行でできる!propertyType = Nullable.GetUnderlyingType(propertyType) ?? propertyType
イヴM.

6
propertyType.IsGenericTypeは実際に前propertyType.GetGenericTypeDefinition()に必要です。それ以外の場合は例外がスローされます。+1
Mike de Klerk 2015

37

Nullable.GetUnderlyingType(fi.FieldType) あなたが望むことをするために以下のコードをチェックしてあなたのために仕事をします

System.Reflection.FieldInfo[] fieldsInfos = typeof(NullWeAre).GetFields();

        foreach (System.Reflection.FieldInfo fi in fieldsInfos)
        {
            if (fi.FieldType.IsGenericType
                && fi.FieldType.GetGenericTypeDefinition().Equals(typeof(Nullable<>)))
            {
                // We are dealing with a generic type that is nullable
                Console.WriteLine("Name: {0}, Type: {1}", fi.Name, Nullable.GetUnderlyingType(fi.FieldType));
            }

    }

5
少なくともこの場合Nullable.GetUnderlyingType(type)type.GetGenericArguments()[0]、よりも明確であるため、私はこのソリューションが好きです。
オリバー

5
あなたはIsGenericTypeとGetGenericTypeDefinitionをチェックする必要はありませんNullable.GetUnderlyingTypeすでにネイティブにそれを行います。タイプがNullable <>でない場合、GetUnderlyingTypeはnullを返します(ソース:msdn.microsoft.com/en-US/library/…
Yves M.

14
foreach (var info in typeof(T).GetProperties())
{
  var type = info.PropertyType;
  var underlyingType = Nullable.GetUnderlyingType(type);
  var returnType = underlyingType ?? type;
}

0

ループを使用してすべてのクラスプロパティを調べ、プロパティタイプを取得しています。私は次のコードを使用します:

public Dictionary<string, string> GetClassFields(TEntity obj)
{
    Dictionary<string, string> dctClassFields = new Dictionary<string, string>();

    foreach (PropertyInfo property in obj.GetType().GetProperties())
    {
        if (property.PropertyType.IsGenericType && property.PropertyType.GetGenericTypeDefinition() == typeof(Nullable<>) && property.PropertyType.GetGenericArguments().Length > 0)
            dctClassFields.Add(property.Name, property.PropertyType.GetGenericArguments()[0].FullName);
        else
            dctClassFields.Add(property.Name, property.PropertyType.FullName);
    }

    return dctClassFields;
}

0

この方法は簡単、迅速、安全です

public static class PropertyInfoExtension {
    public static bool IsNullableProperty(this PropertyInfo propertyInfo)
        => propertyInfo.PropertyType.Name.IndexOf("Nullable`", StringComparison.Ordinal) > -1;
}

0

Yves M.が指摘しているように、 それは以下のように単純です。

var properties = typeof(T).GetProperties();

  foreach (var prop in properties)
  {
     var propType = Nullable.GetUnderlyingType(prop.PropertyType) ?? prop.PropertyType;
     var dataType = propType.Name;
  }
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.