Skip to content
This repository was archived by the owner on Mar 27, 2024. It is now read-only.

Proposal - Filter, Sort, and Transform ObservableCollections with DynamicData #6

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions observablecollections-with-dynamicdata.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Filter, Sort, and Transform ObservableCollections with DynamicData

For many desktop and mobile applications, the ObservableCollection is an essential part for displaying lists and data that change over time. But when your app grows more complex and you need to filter or sort those collections, modifying the ObservableCollection directly becomes difficult and prone to errors.

Building on top of [Reactive Extensions](https://github.com/dotnet/reactive), this talk introduces the [DynamicData](https://github.com/reactivemarbles/DynamicData/) library that makes writing these filters and sorts more concise. During the talk, we will give a short primer on Reactive Extensions and show how to incorporate DynamicData in a WPF project.