public MainWindow() { InitializeComponent(); SourceList.ItemsSource = _source.AsBindableList(); ResultList.ItemsSource = _source .SelectConstant(x => x.Value * 2) .WhereImmutable(x => x > 5) .AsBindableList(); }