I have a LongListSelector Element with an ItemsSource like ItemsSource="{Binding MyList}"
MyList is a ObservableCollection of MyObj. MyObj has two attributes an ID and a Name.
I'd like to filter MyList that only elements with the Name "test" will be displayed.
Can I do this in xaml code?
Thanks