Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a method with a signature like this

void RefreshMethod<T>(IEnumerable<T> lst, string propertyName) where T:class
{
   Type type = typeof(T);
   PropertyInfo property = type.GetProperties().Single(u => u.Name == primaryKeyProperty);
  //query goes here
}

Now i want to query that collection for getting all the values whose

propertyName < 0

In a simple scenario it would be as easy as this

lst.where(u=>u.ID<0)

But here i don't have that ID property but have corresponding "PropertyInfo" object.

How should i acheive this.

kindly guide

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
290 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can lookup the property-value using property.GetValue(anObjectOfTypeT, null).

So something like:

var refreshedList =  lst.Where(l => ((int)(property.GetValue(l, null)) < 0).ToList();

This assumes the property will always be of type int though.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...