反射(?) - 检查类中每个属性/字段的null或为空?

时间:2011-08-02 17:38:58

标签: c# .net reflection

我有一个简单的课程:

public class FilterParams
{
    public string MeetingId { get; set; }
    public int? ClientId { get; set; }
    public string CustNum { get; set; }
    public int AttendedAsFavor { get; set; }
    public int Rating { get; set; }
    public string Comments { get; set; }
    public int Delete { get; set; }
}

如何检查类中的每个属性,如果它们不是null(int)或empty / null(对于字符串),那么我将转换并将该属性的值添加到List<string>

感谢。

6 个答案:

答案 0 :(得分:30)

你可以使用LINQ来做到这一点:

List<string> values
    = typeof(FilterParams).GetProperties()
                          .Select(prop => prop.GetValue(yourObject, null))
                          .Where(val => val != null)
                          .Select(val => val.ToString())
                          .Where(str => str.Length > 0)
                          .ToList();

答案 1 :(得分:6)

不是最好的方法,但粗略地说:

假设obj是您班级的实例:

Type type = typeof(FilterParams);


foreach(PropertyInfo pi in type.GetProperties())
{
  object value = pi.GetValue(obj, null);

  if(value != null && !string.IsNullOrEmpty(value.ToString()))
     // do something
}

答案 2 :(得分:2)

如果你没有很多这样的类而没有太多的属性,最简单的解决方案可能是写一个iterator block来检查和转换每个属性:

public class FilterParams
{
    // ...

    public IEnumerable<string> GetValues()
    {
        if (MeetingId != null) yield return MeetingId;
        if (ClientId.HasValue) yield return ClientId.Value.ToString();
        // ...
        if (Rating != 0)       yield return Rating.ToString();
        // ...
    }
}

用法:

FilterParams filterParams = ...

List<string> values = filterParams.GetValues().ToList();

答案 3 :(得分:1)

PropertyInfo[] properties = typeof(FilterParams).GetProperties();
foreach(PropertyInfo property in properties)
{
    object value = property.GetValue(SomeFilterParamsInstance, null);
    // preform checks on value and etc. here..
}

答案 4 :(得分:0)

以下是一个例子:

foreach (PropertyInfo item in typeof(FilterParams).GetProperties()) {
    if (item != null && !String.IsNullOrEmpty(item.ToString()) {
        //add to list, etc
     } 
}

答案 5 :(得分:0)

你真的需要反思吗?实现像这样的属性 bool IsNull是个案例吗?你可以将它封装在像INullableEntity这样的接口中,并在需要这种功能的每个类中实现,显然如果有很多类,你可能必须坚持使用反射。