├── .gitattributes ├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── DynamicData.ReactiveUI.Tests ├── Domain │ ├── Person.cs │ └── RandomPersonGenerator.cs ├── DynamicData.ReactiveUI.Tests.csproj ├── Fixtures │ ├── BindChangeSetFixture.cs │ ├── BindFromObservableListFixture.cs │ ├── BindSortedChangeSetFixture.cs │ ├── ObservableCollectionToObservableChangeSetFixture.cs │ └── ObservableCollectionToObservableChangeSetWithoutINdexFixture.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── DynamicData.ReactiveUI.build ├── DynamicData.ReactiveUI.sln ├── LICENSE ├── README.md └── Source └── DynamicData.ReactiveUI ├── DynamicData.ReactiveUI.csproj ├── DynamicData.ReactiveUI.nuspec ├── DynamicDataEx.cs ├── ObservableCacheToReactiveListAdaptor.cs ├── ObservableListToReactiveListAdaptor.cs ├── Properties └── AssemblyInfo.cs ├── ReactiveListEx.cs ├── SortedReactiveListAdaptor.cs └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /DynamicData.ReactiveUI.Tests/Domain/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/DynamicData.ReactiveUI.Tests/Domain/Person.cs -------------------------------------------------------------------------------- /DynamicData.ReactiveUI.Tests/Domain/RandomPersonGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/DynamicData.ReactiveUI.Tests/Domain/RandomPersonGenerator.cs -------------------------------------------------------------------------------- /DynamicData.ReactiveUI.Tests/DynamicData.ReactiveUI.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/DynamicData.ReactiveUI.Tests/DynamicData.ReactiveUI.Tests.csproj -------------------------------------------------------------------------------- /DynamicData.ReactiveUI.Tests/Fixtures/BindChangeSetFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/DynamicData.ReactiveUI.Tests/Fixtures/BindChangeSetFixture.cs -------------------------------------------------------------------------------- /DynamicData.ReactiveUI.Tests/Fixtures/BindFromObservableListFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/DynamicData.ReactiveUI.Tests/Fixtures/BindFromObservableListFixture.cs -------------------------------------------------------------------------------- /DynamicData.ReactiveUI.Tests/Fixtures/BindSortedChangeSetFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/DynamicData.ReactiveUI.Tests/Fixtures/BindSortedChangeSetFixture.cs -------------------------------------------------------------------------------- /DynamicData.ReactiveUI.Tests/Fixtures/ObservableCollectionToObservableChangeSetFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/DynamicData.ReactiveUI.Tests/Fixtures/ObservableCollectionToObservableChangeSetFixture.cs -------------------------------------------------------------------------------- /DynamicData.ReactiveUI.Tests/Fixtures/ObservableCollectionToObservableChangeSetWithoutINdexFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/DynamicData.ReactiveUI.Tests/Fixtures/ObservableCollectionToObservableChangeSetWithoutINdexFixture.cs -------------------------------------------------------------------------------- /DynamicData.ReactiveUI.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/DynamicData.ReactiveUI.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DynamicData.ReactiveUI.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/DynamicData.ReactiveUI.Tests/packages.config -------------------------------------------------------------------------------- /DynamicData.ReactiveUI.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/DynamicData.ReactiveUI.build -------------------------------------------------------------------------------- /DynamicData.ReactiveUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/DynamicData.ReactiveUI.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/README.md -------------------------------------------------------------------------------- /Source/DynamicData.ReactiveUI/DynamicData.ReactiveUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/Source/DynamicData.ReactiveUI/DynamicData.ReactiveUI.csproj -------------------------------------------------------------------------------- /Source/DynamicData.ReactiveUI/DynamicData.ReactiveUI.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/Source/DynamicData.ReactiveUI/DynamicData.ReactiveUI.nuspec -------------------------------------------------------------------------------- /Source/DynamicData.ReactiveUI/DynamicDataEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/Source/DynamicData.ReactiveUI/DynamicDataEx.cs -------------------------------------------------------------------------------- /Source/DynamicData.ReactiveUI/ObservableCacheToReactiveListAdaptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/Source/DynamicData.ReactiveUI/ObservableCacheToReactiveListAdaptor.cs -------------------------------------------------------------------------------- /Source/DynamicData.ReactiveUI/ObservableListToReactiveListAdaptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/Source/DynamicData.ReactiveUI/ObservableListToReactiveListAdaptor.cs -------------------------------------------------------------------------------- /Source/DynamicData.ReactiveUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/Source/DynamicData.ReactiveUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/DynamicData.ReactiveUI/ReactiveListEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/Source/DynamicData.ReactiveUI/ReactiveListEx.cs -------------------------------------------------------------------------------- /Source/DynamicData.ReactiveUI/SortedReactiveListAdaptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/Source/DynamicData.ReactiveUI/SortedReactiveListAdaptor.cs -------------------------------------------------------------------------------- /Source/DynamicData.ReactiveUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandPheasant/DynamicData.ReactiveUI/HEAD/Source/DynamicData.ReactiveUI/packages.config --------------------------------------------------------------------------------