├── .gitignore ├── LICENSE ├── README.md ├── samples ├── Memory │ ├── StoreApp.sln │ ├── StoreApp │ │ ├── ApplicationPackageRoot │ │ │ └── ApplicationManifest.xml │ │ ├── ApplicationParameters │ │ │ ├── Cloud.xml │ │ │ ├── Local.1Node.xml │ │ │ └── Local.5Node.xml │ │ ├── PublishProfiles │ │ │ ├── Cloud.xml │ │ │ ├── Local.1Node.xml │ │ │ └── Local.5Node.xml │ │ ├── Scripts │ │ │ └── Deploy-FabricApplication.ps1 │ │ ├── StoreApp.sfproj │ │ └── packages.config │ └── StoreService │ │ ├── App.config │ │ ├── PackageRoot │ │ ├── Config │ │ │ └── Settings.xml │ │ └── ServiceManifest.xml │ │ ├── Product.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── ServiceEventSource.cs │ │ ├── StoreService.cs │ │ ├── StoreService.csproj │ │ └── packages.config └── Persistent │ ├── StoreApp.sln │ ├── StoreApp │ ├── ApplicationPackageRoot │ │ └── ApplicationManifest.xml │ ├── ApplicationParameters │ │ ├── Cloud.xml │ │ ├── Local.1Node.xml │ │ └── Local.5Node.xml │ ├── PublishProfiles │ │ ├── Cloud.xml │ │ ├── Local.1Node.xml │ │ └── Local.5Node.xml │ ├── Scripts │ │ └── Deploy-FabricApplication.ps1 │ ├── StoreApp.sfproj │ └── packages.config │ └── StoreService │ ├── App.config │ ├── AsyncEnumerableExtensions.cs │ ├── PackageRoot │ ├── Config │ │ └── Settings.xml │ └── ServiceManifest.xml │ ├── Product.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ServiceEventSource.cs │ ├── StoreService.cs │ ├── StoreService.csproj │ └── packages.config └── src ├── ServiceFabric.Extensions.Data.Indexing.Memory.Test ├── Properties │ └── AssemblyInfo.cs ├── ServiceFabric.Extensions.Data.Indexing.Memory.Test.csproj └── packages.config ├── ServiceFabric.Extensions.Data.Indexing.Memory ├── Properties │ └── AssemblyInfo.cs ├── ServiceFabric.Extensions.Data.Indexing.Memory.csproj └── packages.config ├── ServiceFabric.Extensions.Data.Indexing.Test ├── Extensions │ └── AsyncEnumerableExtensions.cs ├── FilterableIndexTests.cs ├── IndexExtensionsTests.cs ├── Models │ ├── Address.cs │ └── Person.cs ├── Properties │ └── AssemblyInfo.cs ├── SearchableIndexTests.cs ├── ServiceFabric.Extensions.Data.Indexing.Test.csproj ├── app.config └── packages.config ├── ServiceFabric.Extensions.Data.Indexing.sln ├── ServiceFabric.Extensions.Data.Indexing ├── CollectionExtensions.cs ├── DictionaryFetchAsyncEnumerable.cs ├── FilterableIndex.cs ├── IIndexDefinition.cs ├── IReliableIndexedDictionary.cs ├── IndexExtensions.cs ├── ReliableCollectionExtensions.cs ├── ReliableIndexedDictionary.cs ├── SearchableIndex.cs ├── ServiceFabric.Data.Indexing.nuspec └── ServiceFabric.Extensions.Data.Indexing.csproj └── ServiceFabric.Extensions.Data.Mocks ├── MockAsyncEnumerable.cs ├── MockAsyncEnumerator.cs ├── MockReliableDictionary.cs ├── MockReliableStateManager.cs ├── MockTransaction.cs ├── Properties └── AssemblyInfo.cs ├── ServiceFabric.Extensions.Data.Mocks.csproj └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/README.md -------------------------------------------------------------------------------- /samples/Memory/StoreApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreApp.sln -------------------------------------------------------------------------------- /samples/Memory/StoreApp/ApplicationPackageRoot/ApplicationManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreApp/ApplicationPackageRoot/ApplicationManifest.xml -------------------------------------------------------------------------------- /samples/Memory/StoreApp/ApplicationParameters/Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreApp/ApplicationParameters/Cloud.xml -------------------------------------------------------------------------------- /samples/Memory/StoreApp/ApplicationParameters/Local.1Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreApp/ApplicationParameters/Local.1Node.xml -------------------------------------------------------------------------------- /samples/Memory/StoreApp/ApplicationParameters/Local.5Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreApp/ApplicationParameters/Local.5Node.xml -------------------------------------------------------------------------------- /samples/Memory/StoreApp/PublishProfiles/Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreApp/PublishProfiles/Cloud.xml -------------------------------------------------------------------------------- /samples/Memory/StoreApp/PublishProfiles/Local.1Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreApp/PublishProfiles/Local.1Node.xml -------------------------------------------------------------------------------- /samples/Memory/StoreApp/PublishProfiles/Local.5Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreApp/PublishProfiles/Local.5Node.xml -------------------------------------------------------------------------------- /samples/Memory/StoreApp/Scripts/Deploy-FabricApplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreApp/Scripts/Deploy-FabricApplication.ps1 -------------------------------------------------------------------------------- /samples/Memory/StoreApp/StoreApp.sfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreApp/StoreApp.sfproj -------------------------------------------------------------------------------- /samples/Memory/StoreApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreApp/packages.config -------------------------------------------------------------------------------- /samples/Memory/StoreService/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreService/App.config -------------------------------------------------------------------------------- /samples/Memory/StoreService/PackageRoot/Config/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreService/PackageRoot/Config/Settings.xml -------------------------------------------------------------------------------- /samples/Memory/StoreService/PackageRoot/ServiceManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreService/PackageRoot/ServiceManifest.xml -------------------------------------------------------------------------------- /samples/Memory/StoreService/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreService/Product.cs -------------------------------------------------------------------------------- /samples/Memory/StoreService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreService/Program.cs -------------------------------------------------------------------------------- /samples/Memory/StoreService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/Memory/StoreService/ServiceEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreService/ServiceEventSource.cs -------------------------------------------------------------------------------- /samples/Memory/StoreService/StoreService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreService/StoreService.cs -------------------------------------------------------------------------------- /samples/Memory/StoreService/StoreService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreService/StoreService.csproj -------------------------------------------------------------------------------- /samples/Memory/StoreService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Memory/StoreService/packages.config -------------------------------------------------------------------------------- /samples/Persistent/StoreApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreApp.sln -------------------------------------------------------------------------------- /samples/Persistent/StoreApp/ApplicationPackageRoot/ApplicationManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreApp/ApplicationPackageRoot/ApplicationManifest.xml -------------------------------------------------------------------------------- /samples/Persistent/StoreApp/ApplicationParameters/Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreApp/ApplicationParameters/Cloud.xml -------------------------------------------------------------------------------- /samples/Persistent/StoreApp/ApplicationParameters/Local.1Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreApp/ApplicationParameters/Local.1Node.xml -------------------------------------------------------------------------------- /samples/Persistent/StoreApp/ApplicationParameters/Local.5Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreApp/ApplicationParameters/Local.5Node.xml -------------------------------------------------------------------------------- /samples/Persistent/StoreApp/PublishProfiles/Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreApp/PublishProfiles/Cloud.xml -------------------------------------------------------------------------------- /samples/Persistent/StoreApp/PublishProfiles/Local.1Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreApp/PublishProfiles/Local.1Node.xml -------------------------------------------------------------------------------- /samples/Persistent/StoreApp/PublishProfiles/Local.5Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreApp/PublishProfiles/Local.5Node.xml -------------------------------------------------------------------------------- /samples/Persistent/StoreApp/Scripts/Deploy-FabricApplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreApp/Scripts/Deploy-FabricApplication.ps1 -------------------------------------------------------------------------------- /samples/Persistent/StoreApp/StoreApp.sfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreApp/StoreApp.sfproj -------------------------------------------------------------------------------- /samples/Persistent/StoreApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreApp/packages.config -------------------------------------------------------------------------------- /samples/Persistent/StoreService/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreService/App.config -------------------------------------------------------------------------------- /samples/Persistent/StoreService/AsyncEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreService/AsyncEnumerableExtensions.cs -------------------------------------------------------------------------------- /samples/Persistent/StoreService/PackageRoot/Config/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreService/PackageRoot/Config/Settings.xml -------------------------------------------------------------------------------- /samples/Persistent/StoreService/PackageRoot/ServiceManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreService/PackageRoot/ServiceManifest.xml -------------------------------------------------------------------------------- /samples/Persistent/StoreService/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreService/Product.cs -------------------------------------------------------------------------------- /samples/Persistent/StoreService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreService/Program.cs -------------------------------------------------------------------------------- /samples/Persistent/StoreService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/Persistent/StoreService/ServiceEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreService/ServiceEventSource.cs -------------------------------------------------------------------------------- /samples/Persistent/StoreService/StoreService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreService/StoreService.cs -------------------------------------------------------------------------------- /samples/Persistent/StoreService/StoreService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreService/StoreService.csproj -------------------------------------------------------------------------------- /samples/Persistent/StoreService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/samples/Persistent/StoreService/packages.config -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing.Memory.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing.Memory.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing.Memory.Test/ServiceFabric.Extensions.Data.Indexing.Memory.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing.Memory.Test/ServiceFabric.Extensions.Data.Indexing.Memory.Test.csproj -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing.Memory.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing.Memory.Test/packages.config -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing.Memory/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing.Memory/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing.Memory/ServiceFabric.Extensions.Data.Indexing.Memory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing.Memory/ServiceFabric.Extensions.Data.Indexing.Memory.csproj -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing.Memory/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing.Memory/packages.config -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing.Test/Extensions/AsyncEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing.Test/Extensions/AsyncEnumerableExtensions.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing.Test/FilterableIndexTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing.Test/FilterableIndexTests.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing.Test/IndexExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing.Test/IndexExtensionsTests.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing.Test/Models/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing.Test/Models/Address.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing.Test/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing.Test/Models/Person.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing.Test/SearchableIndexTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing.Test/SearchableIndexTests.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing.Test/ServiceFabric.Extensions.Data.Indexing.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing.Test/ServiceFabric.Extensions.Data.Indexing.Test.csproj -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing.Test/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing.Test/app.config -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing.Test/packages.config -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing.sln -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing/CollectionExtensions.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing/DictionaryFetchAsyncEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing/DictionaryFetchAsyncEnumerable.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing/FilterableIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing/FilterableIndex.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing/IIndexDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing/IIndexDefinition.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing/IReliableIndexedDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing/IReliableIndexedDictionary.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing/IndexExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing/IndexExtensions.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing/ReliableCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing/ReliableCollectionExtensions.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing/ReliableIndexedDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing/ReliableIndexedDictionary.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing/SearchableIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing/SearchableIndex.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing/ServiceFabric.Data.Indexing.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing/ServiceFabric.Data.Indexing.nuspec -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Indexing/ServiceFabric.Extensions.Data.Indexing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Indexing/ServiceFabric.Extensions.Data.Indexing.csproj -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Mocks/MockAsyncEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Mocks/MockAsyncEnumerable.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Mocks/MockAsyncEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Mocks/MockAsyncEnumerator.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Mocks/MockReliableDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Mocks/MockReliableDictionary.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Mocks/MockReliableStateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Mocks/MockReliableStateManager.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Mocks/MockTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Mocks/MockTransaction.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Mocks/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Mocks/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Mocks/ServiceFabric.Extensions.Data.Mocks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Mocks/ServiceFabric.Extensions.Data.Mocks.csproj -------------------------------------------------------------------------------- /src/ServiceFabric.Extensions.Data.Mocks/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessebenson/service-fabric-indexing/HEAD/src/ServiceFabric.Extensions.Data.Mocks/packages.config --------------------------------------------------------------------------------