├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE.txt ├── NuGet.Config ├── Readme.md ├── TableStorage.Abstractions.nuspec ├── TableStorage.Abstractions.sln ├── appveyor.yml ├── src └── TableStorage.Abstractions │ ├── Factory │ ├── ITableStoreFactory.cs │ └── TableStoreFactory.cs │ ├── Models │ └── PagedResult.cs │ ├── Parsers │ └── TimeStringParser.cs │ ├── Store │ ├── ITableStore.cs │ ├── ITableStoreCommon.cs │ ├── ITableStoreDynamic.cs │ ├── ParseConnectionString.cs │ ├── TableStorageOptions.cs │ ├── TableStore.cs │ ├── TableStoreBase.cs │ └── TableStoreDynamic.cs │ ├── TableStorage.Abstractions.csproj │ └── Validators │ └── TableStorageOptionsValidator.cs └── tests └── TableStorage.Abstractions.Tests ├── Helpers ├── TestDataHelper.cs └── TestTableEntity.cs ├── Parsers └── TimeStringParserTests.cs ├── Store ├── TableStoreDeleteTests.cs ├── TableStoreDynamicDeleteTests.cs ├── TableStoreDynamicInsertTests.cs ├── TableStoreDynamicTests.cs ├── TableStoreDynamicUpdateTests.cs ├── TableStoreInsertTests.cs ├── TableStoreQueryTests.cs ├── TableStoreTests.cs └── TableStoreUpdateTests.cs └── TableStorage.Abstractions.Tests.csproj /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/NuGet.Config -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/Readme.md -------------------------------------------------------------------------------- /TableStorage.Abstractions.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/TableStorage.Abstractions.nuspec -------------------------------------------------------------------------------- /TableStorage.Abstractions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/TableStorage.Abstractions.sln -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/appveyor.yml -------------------------------------------------------------------------------- /src/TableStorage.Abstractions/Factory/ITableStoreFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/src/TableStorage.Abstractions/Factory/ITableStoreFactory.cs -------------------------------------------------------------------------------- /src/TableStorage.Abstractions/Factory/TableStoreFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/src/TableStorage.Abstractions/Factory/TableStoreFactory.cs -------------------------------------------------------------------------------- /src/TableStorage.Abstractions/Models/PagedResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/src/TableStorage.Abstractions/Models/PagedResult.cs -------------------------------------------------------------------------------- /src/TableStorage.Abstractions/Parsers/TimeStringParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/src/TableStorage.Abstractions/Parsers/TimeStringParser.cs -------------------------------------------------------------------------------- /src/TableStorage.Abstractions/Store/ITableStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/src/TableStorage.Abstractions/Store/ITableStore.cs -------------------------------------------------------------------------------- /src/TableStorage.Abstractions/Store/ITableStoreCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/src/TableStorage.Abstractions/Store/ITableStoreCommon.cs -------------------------------------------------------------------------------- /src/TableStorage.Abstractions/Store/ITableStoreDynamic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/src/TableStorage.Abstractions/Store/ITableStoreDynamic.cs -------------------------------------------------------------------------------- /src/TableStorage.Abstractions/Store/ParseConnectionString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/src/TableStorage.Abstractions/Store/ParseConnectionString.cs -------------------------------------------------------------------------------- /src/TableStorage.Abstractions/Store/TableStorageOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/src/TableStorage.Abstractions/Store/TableStorageOptions.cs -------------------------------------------------------------------------------- /src/TableStorage.Abstractions/Store/TableStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/src/TableStorage.Abstractions/Store/TableStore.cs -------------------------------------------------------------------------------- /src/TableStorage.Abstractions/Store/TableStoreBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/src/TableStorage.Abstractions/Store/TableStoreBase.cs -------------------------------------------------------------------------------- /src/TableStorage.Abstractions/Store/TableStoreDynamic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/src/TableStorage.Abstractions/Store/TableStoreDynamic.cs -------------------------------------------------------------------------------- /src/TableStorage.Abstractions/TableStorage.Abstractions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/src/TableStorage.Abstractions/TableStorage.Abstractions.csproj -------------------------------------------------------------------------------- /src/TableStorage.Abstractions/Validators/TableStorageOptionsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/src/TableStorage.Abstractions/Validators/TableStorageOptionsValidator.cs -------------------------------------------------------------------------------- /tests/TableStorage.Abstractions.Tests/Helpers/TestDataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/tests/TableStorage.Abstractions.Tests/Helpers/TestDataHelper.cs -------------------------------------------------------------------------------- /tests/TableStorage.Abstractions.Tests/Helpers/TestTableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/tests/TableStorage.Abstractions.Tests/Helpers/TestTableEntity.cs -------------------------------------------------------------------------------- /tests/TableStorage.Abstractions.Tests/Parsers/TimeStringParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/tests/TableStorage.Abstractions.Tests/Parsers/TimeStringParserTests.cs -------------------------------------------------------------------------------- /tests/TableStorage.Abstractions.Tests/Store/TableStoreDeleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/tests/TableStorage.Abstractions.Tests/Store/TableStoreDeleteTests.cs -------------------------------------------------------------------------------- /tests/TableStorage.Abstractions.Tests/Store/TableStoreDynamicDeleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/tests/TableStorage.Abstractions.Tests/Store/TableStoreDynamicDeleteTests.cs -------------------------------------------------------------------------------- /tests/TableStorage.Abstractions.Tests/Store/TableStoreDynamicInsertTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/tests/TableStorage.Abstractions.Tests/Store/TableStoreDynamicInsertTests.cs -------------------------------------------------------------------------------- /tests/TableStorage.Abstractions.Tests/Store/TableStoreDynamicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/tests/TableStorage.Abstractions.Tests/Store/TableStoreDynamicTests.cs -------------------------------------------------------------------------------- /tests/TableStorage.Abstractions.Tests/Store/TableStoreDynamicUpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/tests/TableStorage.Abstractions.Tests/Store/TableStoreDynamicUpdateTests.cs -------------------------------------------------------------------------------- /tests/TableStorage.Abstractions.Tests/Store/TableStoreInsertTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/tests/TableStorage.Abstractions.Tests/Store/TableStoreInsertTests.cs -------------------------------------------------------------------------------- /tests/TableStorage.Abstractions.Tests/Store/TableStoreQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/tests/TableStorage.Abstractions.Tests/Store/TableStoreQueryTests.cs -------------------------------------------------------------------------------- /tests/TableStorage.Abstractions.Tests/Store/TableStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/tests/TableStorage.Abstractions.Tests/Store/TableStoreTests.cs -------------------------------------------------------------------------------- /tests/TableStorage.Abstractions.Tests/Store/TableStoreUpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/tests/TableStorage.Abstractions.Tests/Store/TableStoreUpdateTests.cs -------------------------------------------------------------------------------- /tests/TableStorage.Abstractions.Tests/TableStorage.Abstractions.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazmainiandevil/TableStorage.Abstractions/HEAD/tests/TableStorage.Abstractions.Tests/TableStorage.Abstractions.Tests.csproj --------------------------------------------------------------------------------