C1.DataCollection 1.0.20221.66

There is a newer version of this package available.
See the version list below for details.
dotnet add package C1.DataCollection --version 1.0.20221.66
NuGet\Install-Package C1.DataCollection -Version 1.0.20221.66
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="C1.DataCollection" Version="1.0.20221.66" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add C1.DataCollection --version 1.0.20221.66
#r "nuget: C1.DataCollection, 1.0.20221.66"
#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 C1.DataCollection as a Cake Addin
#addin nuget:?package=C1.DataCollection&version=1.0.20221.66

// Install C1.DataCollection as a Cake Tool
#tool nuget:?package=C1.DataCollection&version=1.0.20221.66

About

The ComponentOne DataCollection library includes a series of cross-platform observable collections with features like sorting, grouping and filtering and data virtualization techniques like cursor and pagination.

Commonly Used Types:

  • C1.DataCollection.C1DataCollection
  • C1.DataCollection.C1VirtualDataCollection
  • C1.DataCollection.C1CursorDataCollection
  • C1.DataCollection.C1PagedDataCollection
In-memory Data Collections

C1DataCollection is the main class used to sort, filter and group any in memory collection like lists, arrays or observable collection

var collection = new ObservableCollection<Item>();
var dc = new C1DataCollection<Item>(collection);
await dc.SortAsync("Property1", "Property2");

All the data-collections implement INotifyCollectionChanged, when a change happens in the underlying ObservableCollection, the change will be reflected and notified immediatly in the data-collection.

Similarly, the C1DataCollection can be grouped and filtered

var collection = new ObservableCollection<Item>();
var dc = new C1DataCollection<Item>(collection);
await dc.GroupAsync("Property1");
var collection = new ObservableCollection<Item>();
var dc = new C1DataCollection<Item>(collection);
await dc.FilterAsync("Property1", FilterOperation.Contains, "X");
Virtualizing Data Collections

C1VirtualDataCollection and C1CursorDataCollection are two abstract collection that can be used to implement collection whose items are pulled on demand from an external source, typically a network call.

public class YouTubeCollectionView : C1CursorDataCollection<YouTubeVideo>
{
    protected override async Task<Tuple<string, IReadOnlyList<YouTubeVideo>>> GetPageAsync(int startingIndex, string pageToken, int? count = null, IReadOnlyList<SortDescription> sortDescriptions = null, FilterExpression filterExpresssion = null, CancellationToken cancellationToken = default(CancellationToken))
    {
        var client = new HttpClient();
        var response = await client.GetAsync(youtubeUrl, cancellationToken);
        var videos = new List<YouTubeVideo>();
        var serializer = new DataContractJsonSerializer(typeof(YouTubeSearchResult));
        var result = serializer.ReadObject(await response.Content.ReadAsStreamAsync()) as YouTubeSearchResult;
        foreach (var item in result.Items)
        {
            videos.Add(new YouTubeVideo(item));
        }
        return new Tuple<string, IReadOnlyList<YouTubeVideo>>(result.NextPageToken, videos);
    }
}
Composition Data Collections

There are a series of data collections that can be used to compose other collections

Extensions

Built-in extensions ease the creation of data collections from know sources like EntityFrameworkCore, Ado.Net and BindingList.

Adapters

Built-in adapters are used to binding data-collections to native controls.

Serialization

C1.DataCollection.Serialization includes System.Text.Json converters to serialize and deserialize filter, sort and notification classes to Json.

Resources

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 netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.1 is compatible.  netstandard1.2 was computed.  netstandard1.3 was computed.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 was computed.  netstandard2.1 was computed. 
.NET Framework net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  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 tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Phone wpa81 was computed. 
Windows Store netcore was computed.  netcore45 was computed.  netcore451 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 (60)

Showing the top 5 NuGet packages that depend on C1.DataCollection:

Package Downloads
C1.DataCollection.BindingList

DataCollection.BindingList allows using any IBindingListView, including DataTable views, as the source of controls supporting C1.DataCollection. Commonly Used Types: C1.DataCollection.BindingList.C1DataCollectionBindingList

C1.WPF.DataCollection

This library allow using any C1.DataCollection as the source of any WPF control by implementing ICollectionView. Commonly Used Types: C1.WPF.DataCollection.C1CollectionView C1.WPF.DataCollection.C1CollectionViewDataCollection

C1.Android.Chart

FlexChart is a Cartesian chart control. Supports line, area, scatter, bubble, candle, column, bar and HLOC financial chart types.

C1.Android.Grid

FlexGrid is a data grid which displays the information in a tabular view.

C1.Xamarin.Forms.Grid

FlexGrid is a data grid which displays the information in a tabular view.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.20233.180 406 1/25/2024
8.0.20233.177 497 11/21/2023
8.0.20233.176 278 11/10/2023
7.0.20233.175 2,309 11/9/2023
7.0.20233.174 447 11/8/2023
1.0.20232.164 1,829 8/2/2023
1.0.20232.161 4,762 6/20/2023
1.0.20231.144 4,825 5/11/2023
1.0.20231.129 2,881 3/24/2023
1.0.20231.128 710 3/24/2023
1.0.20231.127 737 3/24/2023
1.0.20223.122 4,023 3/24/2023
1.0.20223.121 13,145 1/18/2023
1.0.20223.116 7,186 11/30/2022
1.0.20222.109 8,146 8/31/2022
1.0.20222.106 36,356 7/27/2022
1.0.20221.66 9,448 5/5/2022
1.0.20221.65 16,410 3/23/2022
1.0.20213.62 15,269 1/11/2022
1.0.20213.61 20,179 11/5/2021
1.0.20212.59 12,291 10/14/2021
1.0.20212.58 1,334 9/16/2021
1.0.20212.57 13,720 8/5/2021
1.0.20211.35 2,198 5/6/2021
1.0.20211.34 12,914 4/6/2021
1.0.20203.32 17,602 11/10/2020
1.0.20202.28 9,260 7/29/2020
1.0.20201.27 2,795 6/23/2020
1.0.20201.25 11,339 5/21/2020
1.0.20201.23 2,826 3/19/2020
1.0.20201.14 7,708 3/19/2020
1.0.20201.8-beta 1,279 2/13/2020
1.0.20201.7-beta 1,286 1/28/2020
1.0.20201.4-beta 1,383 12/11/2019
1.0.20201.3-beta 2,314 12/3/2019