E
Erik
I have a base collection class that I use to derive all my collections
from. It derives from CollectionBase. I have added custom Sorting and
now would like to add Filtering.
I have spent a decent amount of time looking thru code and really have
not found anything that suits my needs. I simply want to pass in a
filter expression use that that expression against the protected List
(exposed by CollectionBase) object and return an array list containing
only the objects that meet that filter expression.
Is this possible? OR Shall I just do forEach and check the props of
the objects I have stored in the Collection?
Any help would be great.
Erik
from. It derives from CollectionBase. I have added custom Sorting and
now would like to add Filtering.
I have spent a decent amount of time looking thru code and really have
not found anything that suits my needs. I simply want to pass in a
filter expression use that that expression against the protected List
(exposed by CollectionBase) object and return an array list containing
only the objects that meet that filter expression.
Is this possible? OR Shall I just do forEach and check the props of
the objects I have stored in the Collection?
Any help would be great.
Erik