Micky5991.FilteredList
1.0.1
dotnet add package Micky5991.FilteredList --version 1.0.1
NuGet\Install-Package Micky5991.FilteredList -Version 1.0.1
<PackageReference Include="Micky5991.FilteredList" Version="1.0.1" />
paket add Micky5991.FilteredList --version 1.0.1
#r "nuget: Micky5991.FilteredList, 1.0.1"
// Install Micky5991.FilteredList as a Cake Addin #addin nuget:?package=Micky5991.FilteredList&version=1.0.1 // Install Micky5991.FilteredList as a Cake Tool #tool nuget:?package=Micky5991.FilteredList&version=1.0.1
FilteredList
A C# class that implements a filtered list using an ObservableCollection as the source.
Installation
You can install this package using NuGet Package Manager:
Install-Package Micky5991.FilteredList
Description
This class allows you to create a filtered subset of an ObservableCollection based on a given predicate. The class is generic, so it can be used with any types that inherit from the same source type. The implementation is efficient and updates the subset dynamically when the source list is modified.
Example
Suppose we have an interface IEntity
and two interfaces that inherit from it: IPlayer
and IAnimal
.
public interface IEntity
{
string Name { get; }
}
public interface IPlayer : IEntity
{
int Score { get; }
}
public interface IAnimal : IEntity
{
int Age { get; }
}
We can create a source list of IEntity objects and add some IPlayer and IAnimal objects to it:
var sourceList = new ObservableCollection<IEntity>();
sourceList.Add(new Player { Name = "Alice", Score = 10 });
sourceList.Add(new Player { Name = "Bob", Score = 20 });
sourceList.Add(new Animal { Name = "Charlie", Age = 3 });
sourceList.Add(new Animal { Name = "David", Age = 5 });
Now, we can create a FilteredList
of IEntity
objects names longer than 3 characters:
var filteredList = new FilteredList<IEntity>(sourceList, x => x.Name.Length > 10);
To further reduce the list of entities down, you can create another subset of this list to only include players with a score of more than 10:
var highLevelPlayers = filteredList.CreateSubSet((IPlayer p) => p.Level > 20);
License
This library is licensed under the MIT License. See LICENSE for more information.
Product | Versions 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 | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- CommunityToolkit.Diagnostics (>= 8.2.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.