From e7e166a572946ad16bf830a30a033928ed19d209 Mon Sep 17 00:00:00 2001 From: Blake Burgess Date: Mon, 15 Aug 2022 22:27:51 -0400 Subject: [PATCH 1/2] Create supercharging-observablecollection-with-dynamicdata.md --- supercharging-observablecollection-with-dynamicdata.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 supercharging-observablecollection-with-dynamicdata.md diff --git a/supercharging-observablecollection-with-dynamicdata.md b/supercharging-observablecollection-with-dynamicdata.md new file mode 100644 index 0000000..326f91c --- /dev/null +++ b/supercharging-observablecollection-with-dynamicdata.md @@ -0,0 +1,3 @@ +# Supercharging ObservableCollection with DynamicData + +To be determined... From cf3bcd042a090247701d4055a70944fcf89989a4 Mon Sep 17 00:00:00 2001 From: Blake Burgess Date: Sun, 16 Oct 2022 00:07:20 -0400 Subject: [PATCH 2/2] Add abstract --- observablecollections-with-dynamicdata.md | 5 +++++ supercharging-observablecollection-with-dynamicdata.md | 3 --- 2 files changed, 5 insertions(+), 3 deletions(-) create mode 100644 observablecollections-with-dynamicdata.md delete mode 100644 supercharging-observablecollection-with-dynamicdata.md diff --git a/observablecollections-with-dynamicdata.md b/observablecollections-with-dynamicdata.md new file mode 100644 index 0000000..de5a740 --- /dev/null +++ b/observablecollections-with-dynamicdata.md @@ -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. diff --git a/supercharging-observablecollection-with-dynamicdata.md b/supercharging-observablecollection-with-dynamicdata.md deleted file mode 100644 index 326f91c..0000000 --- a/supercharging-observablecollection-with-dynamicdata.md +++ /dev/null @@ -1,3 +0,0 @@ -# Supercharging ObservableCollection with DynamicData - -To be determined...