Cogs.ActiveQuery 1.6.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package Cogs.ActiveQuery --version 1.6.5
NuGet\Install-Package Cogs.ActiveQuery -Version 1.6.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Cogs.ActiveQuery" Version="1.6.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Cogs.ActiveQuery --version 1.6.5
#r "nuget: Cogs.ActiveQuery, 1.6.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Cogs.ActiveQuery as a Cake Addin
#addin nuget:?package=Cogs.ActiveQuery&version=1.6.5

// Install Cogs.ActiveQuery as a Cake Tool
#tool nuget:?package=Cogs.ActiveQuery&version=1.6.5

This library provides re-implementations of extension methods you know and love from System.Linq.Enumerable, but instead of returning Enumerable<T>s and simple values, these return ActiveEnumerable<T>s, ActiveDictionary<TKey, TValue>s, and ActiveValue<T>s. This is because, unlike traditional LINQ extension methods, these extension methods continuously update their results until those results are disposed.

But... what could cause those updates?

  • the source is enumerable, implements INotifyCollectionChanged, and raises a CollectionChanged event
  • the source is a dictionary, implements Cogs.Collections.INotifyDictionaryChanged<TKey, TValue>, and raises a DictionaryChanged event
  • the elements in the enumerable (or the values in the dictionary) implement INotifyPropertyChanged and raise a PropertyChanged event
  • a reference enclosed by a selector or a predicate passed to the extension method implements INotifyCollectionChanged, Cogs.Collections.INotifyDictionaryChanged<TKey, TValue>, or INotifyPropertyChanged and raises one of their events

That last one might be a little surprising, but this is because all selectors and predicates passed to Active Query extension methods become active expressions (see above). This means that you will not be able to pass one that the Active Expressions library doesn't support (e.g. a lambda expression that can't be converted to an expression tree or that contains nodes that Active Expressions doesn't deal with). But, in exchange for this, you get all kinds of notification plumbing that's just handled for you behind the scenes.

Suppose, for example, you're working on an app that displays a list of notes and you want the notes to be shown in descending order of when they were last edited.

var notes = new ObservableCollection<Note>();

var orderedNotes = notes.ActiveOrderBy(note => note.LastEdited, isDescending: true);
notesViewControl.ItemsSource = orderedNotes;

From then on, as you add Notes to the notes observable collection, the ActiveEnumerable<Note> named orderedNotes will be kept ordered so that notesViewControl displays them in the preferred order.

Since the ActiveEnumerable<T> is automatically subscribing to events for you, you do need to call Dispose on it when you don't need it any more.

void Page_Unload(object sender, EventArgs e)
{
    orderedNotes.Dispose();
}

But, you may ask, what happens if things are a little bit more complicated because of background work? Suppose...

SynchronizedObservableCollection<Note> notes;
ActiveEnumerable<Note> orderedNotes;
Task.Run(() =>
{
    notes = new SynchronizedObservableCollection<Note>();
    orderedNotes = notes.ActiveOrderBy(note => note.LastEdited, isDescending: true);
});

Since we called the Cogs.Collections.Synchronized.SynchronizedObservableCollection constructor in the context of a TPL Task and without specifying a SynchronizationContext, operations performed on it will not be in the context of our UI thread. Manipulating this collection on a background thread might be desirable, but there will be a big problem if we bind a UI control to it, since non-UI threads shouldn't be messing with UI controls. For this specific reason, Active Query offers a special extension method that will perform the final operations on an enumerable (or dictionary) using a specific SynchronizationContext.

var uiContext = SynchronizationContext.Current;
SynchronizedObservableCollection<Note> notes;
ActiveEnumerable<Note> orderedNotes;
ActiveEnumerable<Note> notesForBinding;
Task.Run(() =>
{
    notes = new SynchronizedObservableCollection<Note>();
    orderedNotes = notes.ActiveOrderBy(note => note.LastEdited, isDescending: true);
    notesForBinding = orderedNotes.SwitchContext(uiContext);
});

Or, if you call SwitchContext without any arguments but when you know you're already running in the UI's context, it will assume you want to switch to that.

SynchronizedObservableCollection<Note> notes;
ActiveEnumerable<Note> orderedNotes;
await Task.Run(() =>
{
    notes = new SynchronizedObservableCollection<Note>();
    orderedNotes = notes.ActiveOrderBy(note => note.LastEdited, isDescending: true);
});
var notesForBinding = orderedNotes.SwitchContext();

But, keep in mind that no Active Query extension methods mutate the objects for which they are called, which means now you have two things to dispose, and in the right order!

void Page_Unload(object sender, EventArgs e)
{
    notesForBinding.Dispose();
    orderedNotes.Dispose();
}

Ahh, but what about exceptions? Well, active expressions expose a Fault property and raise PropertyChanging and PropertyChanged events for it, but... you don't really see those active expressions as an Active Query caller, do ya? For that reason, Active Query introduces the INotifyElementFaultChanges interface, which is implemented by ActiveEnumerable<T>, ActiveDictionary<TKey, TValue>, and ActiveValue<T>. You may subscribe to its ElementFaultChanging and ElementFaultChanged events to be notified when an active expression runs into a problem. You may also call the GetElementFaults method at any time to retrieve a list of the elements (or key/value pairs) that have active expressions that are currently faulted and what the exception was in each case.

As with the Active Expressions library, you can use the static property Optimizer to specify an optimization method to invoke automatically during the active expression creation process. However, please note that Active Query also has its own version of this property on the ActiveQueryOptions static class. If you are not using Active Expressions directly, we recommend using Active Query's property instead because the optimizer will be called only once per extension method call in that case, no matter how many elements or key/value pairs are processed by it. Optimize your optimization, yo.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.8.0 248 2/10/2023
1.7.0 255 1/26/2023
1.6.9 278 1/21/2023
1.6.8 427 7/2/2022
1.6.7 419 6/25/2022
1.6.6 416 6/25/2022
1.6.5 380 6/16/2022
1.6.4 383 6/4/2022
1.6.3 401 5/31/2022
1.6.2 402 5/11/2022
1.6.1 401 5/11/2022
1.6.0 402 5/11/2022
1.5.13 445 4/13/2022
1.5.12 434 4/13/2022
1.5.11 407 4/12/2022
1.5.10 421 4/4/2022
1.5.9 405 4/3/2022
1.5.7 412 3/30/2022
1.5.6 414 3/29/2022
1.5.5 400 3/29/2022
1.5.4 412 3/28/2022
1.5.2 428 3/28/2022
1.5.1 395 3/27/2022
1.5.0 272 1/5/2022
1.4.9 292 12/21/2021
1.4.8 277 12/21/2021
1.4.7 291 12/16/2021
1.4.6 285 12/16/2021
1.4.5 282 12/12/2021
1.4.4 331 11/3/2021
1.4.3 345 11/3/2021
1.4.2 305 10/25/2021
1.4.1 396 10/17/2021
1.4.0 359 7/15/2021
1.3.11 350 3/3/2021
1.3.10 337 2/27/2021
1.3.9 352 2/26/2021
1.3.8 326 2/20/2021
1.3.7 365 2/10/2021
1.3.6 329 2/8/2021
1.3.5 341 2/1/2021
1.3.4 307 1/30/2021
1.3.3 409 12/14/2020
1.3.2 474 10/24/2020
1.3.1 457 10/23/2020
1.3.0 511 10/23/2020
1.2.2 421 10/22/2020
1.2.1 445 10/22/2020
1.2.0 431 10/20/2020
1.1.1 478 10/19/2020
1.1.0 422 10/4/2020
1.0.22 462 9/28/2020
1.0.21 580 9/27/2020
1.0.20 527 9/27/2020
1.0.19 548 9/27/2020
1.0.18 447 6/2/2020
1.0.17 461 5/27/2020
1.0.16 425 5/26/2020
1.0.15 460 5/26/2020
1.0.14 518 5/17/2020
1.0.13 459 5/15/2020
1.0.12 443 5/13/2020
1.0.11 455 5/13/2020
1.0.10 490 5/13/2020
1.0.9 448 5/12/2020
1.0.8 485 5/9/2020
1.0.7 493 5/9/2020
1.0.6 473 5/7/2020
1.0.5 464 5/7/2020
1.0.4 499 4/29/2020
1.0.3 455 4/17/2020
1.0.2 489 4/17/2020
1.0.1 503 3/4/2020
1.0.0 526 3/4/2020

We increased the resilience of ActiveSelectEnumerable.