I have a WPF application and there is a datagrid in all the forms. I have a common window for filtering records in these datagrids. I am using ICollectionView for the filtering.

Currently it filters only one entity (OrdsRlsd)

    GV.view.Filter = item =>
            {
                OrdsRlsd vitem = item as OrdsRlsd;

                if (vitem.OrderNo >= Convert.ToUInt32(Value1))
                {
                    return true;
                }
                return false;
            };

where GV is a global variables file which holds the ICollectionView. I want to accomplish the above for any entity and any property. I can pass the entity to the filter window using a dictionary. I want to convert this from the object type to the corresponding type.

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.