{"id":30691293,"url":"https://github.com/emako/bindableobservablecollections","last_synced_at":"2026-06-23T03:31:29.977Z","repository":{"id":311279589,"uuid":"1043363516","full_name":"emako/BindableObservableCollections","owner":"emako","description":"Bindable extension library for ObservableCollections which is a high performance observable collections.","archived":false,"fork":false,"pushed_at":"2025-08-25T13:11:25.000Z","size":21,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-02T03:56:21.081Z","etag":null,"topics":["mvvm","wpf"],"latest_commit_sha":null,"homepage":"https://nuget.org/packages/BindableObservableCollections","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/emako.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-23T17:38:31.000Z","updated_at":"2025-08-25T13:11:29.000Z","dependencies_parsed_at":"2025-09-02T03:48:08.781Z","dependency_job_id":"a5b2d34b-8d6a-460a-ba2f-69054906e236","html_url":"https://github.com/emako/BindableObservableCollections","commit_stats":null,"previous_names":["emako/bindableobservablecollections"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/emako/BindableObservableCollections","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emako%2FBindableObservableCollections","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emako%2FBindableObservableCollections/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emako%2FBindableObservableCollections/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emako%2FBindableObservableCollections/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/emako","download_url":"https://codeload.github.com/emako/BindableObservableCollections/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emako%2FBindableObservableCollections/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34674702,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-23T02:00:07.161Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mvvm","wpf"],"created_at":"2025-09-02T03:48:05.528Z","updated_at":"2026-06-23T03:31:29.971Z","avatar_url":"https://github.com/emako.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003e [!NOTE]\n\u003e \n\u003e **Public Archived**\n\u003e *Due to the problem of relying on the upstream agreement with Microsoft, transfer to [LiteObservableCollections](https://github.com/emako/LiteObservableCollections) to continue maintenance.*\n\n[![NuGet](https://img.shields.io/nuget/v/BindableObservableCollections.svg)](https://nuget.org/packages/BindableObservableCollections) [![Actions](https://github.com/emako/BindableObservableCollections/actions/workflows/library.nuget.yml/badge.svg)](https://github.com/emako/BindableObservableCollections/actions/workflows/library.nuget.yml) \n\n# BindableObservableCollections\n\nThis library provides WPF/XAML-friendly wrappers for [Cysharp/ObservableCollections](https://github.com/Cysharp/ObservableCollections), enabling direct data binding to high-performance observable collections in .NET MVVM applications.\n\n## Features\n\n- **BindableObservableList**\n- **BindableObservableDictionary**\n- **BindableObservableHashSet**\n- **BindableObservableQueue**\n- **BindableObservableStack**\n\nAll types expose a `NotifySource` property (a `NotifyCollectionChangedSynchronizedViewList\u003cT\u003e`) that implements `INotifyCollectionChanged` and can be used directly as an `ItemsSource` in WPF, Avalonia, or WinUI.\n\n## Example (WPF)\n\n```csharp\npublic class MainViewModel : ObservableObject\n{\n    public BindableObservableList\u003cstring\u003e List { get; } = new();\n    public NotifyCollectionChangedSynchronizedViewList\u003cstring\u003e ListView { get; }\n\n    public MainViewModel()\n    {\n        ListView = List.ToNotifyCollectionChanged();\n    }\n}\n```\n\n```xml\n\u003c!-- XAML --\u003e\n\u003cListBox ItemsSource=\"{Binding ListView}\" /\u003e\n```\n\n## MVVM Command Integration\n\nYou can use [CommunityToolkit.Mvvm](https://github.com/CommunityToolkit/dotnet) to expose commands for adding/removing items:\n\n```csharp\n[RelayCommand]\nprivate void AddList()\n{\n    List.Add($\"Item {List.Count + 1}\");\n}\n```\n\n## Supported Platforms\n\n- .NET 6/7/8/9\n- WPF, Avalonia, WinUI, Blazor, and more\n\n## Requirements\n\n- [ObservableCollections](https://www.nuget.org/packages/ObservableCollections)\n- [CommunityToolkit.Mvvm](https://www.nuget.org/packages/CommunityToolkit.Mvvm) (optional, for MVVM command support)\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femako%2Fbindableobservablecollections","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femako%2Fbindableobservablecollections","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femako%2Fbindableobservablecollections/lists"}