├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── dotnet.yml │ ├── merge.yml │ └── stale.yml ├── .gitignore ├── Directory.Packages.props ├── FluentCommand.slnx ├── LICENSE ├── README.md ├── coverlet.runsettings ├── dictionary.dic ├── docs ├── assets │ └── logo.png ├── docfx.json ├── guide │ ├── cache.md │ ├── configuration.md │ ├── generation.md │ ├── logging.md │ ├── parameter.md │ ├── query.md │ ├── sql.md │ └── toc.yml ├── index.md ├── reference │ ├── .gitignore │ └── index.md ├── template │ └── public │ │ └── main.css └── toc.yml ├── logo.png ├── src ├── Directory.Build.props ├── FluentCommand.Batch │ ├── BatchError.cs │ ├── BatchFactory.cs │ ├── BatchJob.cs │ ├── BatchJobValidator.cs │ ├── BatchJobVisitor.cs │ ├── BatchProcessor.cs │ ├── FieldDefault.cs │ ├── FieldIndex.cs │ ├── FieldMapping.cs │ ├── FieldMatch.cs │ ├── Fluent │ │ ├── BatchBuilder.cs │ │ ├── BatchFieldBuilder.cs │ │ └── BatchMatchBuilder.cs │ ├── FluentCommand.Batch.csproj │ ├── IBatchFactory.cs │ ├── IBatchProcessor.cs │ ├── IBatchTranslator.cs │ ├── IBatchValidator.cs │ ├── Translators │ │ └── TranslatorBase.cs │ └── Validation │ │ ├── BatchValidator.cs │ │ └── DuplicateException.cs ├── FluentCommand.Caching │ ├── DataConfigurationBuilderExtensions.cs │ ├── DistributedDataCache.cs │ ├── FluentCommand.Caching.csproj │ ├── IDistributedCacheSerializer.cs │ └── MessagePackCacheSerializer.cs ├── FluentCommand.Csv │ ├── CsvCommandExtensions.cs │ └── FluentCommand.Csv.csproj ├── FluentCommand.Dapper │ ├── ConcurrencyTokenTypeHandler.cs │ ├── DataCommandExtensions.cs │ ├── FluentCommand.Dapper.csproj │ └── ReaderFactory.cs ├── FluentCommand.EntityFactory │ ├── DataCommandExtensions.cs │ ├── FluentCommand.EntityFactory.csproj │ ├── ReaderFactory.cs │ └── Reflection │ │ └── ReflectionHelper.cs ├── FluentCommand.Generators │ ├── DataReaderFactoryGenerator.cs │ ├── DataReaderFactoryWriter.cs │ ├── DiagnosticDescriptors.cs │ ├── FluentCommand.Generators.csproj │ ├── GenerateAttributeGenerator.cs │ ├── IndentedStringBuilder.cs │ ├── IsExternalInit.cs │ ├── Models │ │ ├── EntityClass.cs │ │ ├── EntityContext.cs │ │ ├── EntityProperty.cs │ │ ├── EquatableArray.cs │ │ └── InitializationMode.cs │ ├── Properties │ │ └── launchSettings.json │ └── TableAttributeGenerator.cs ├── FluentCommand.Import │ ├── Converters │ │ └── TypeJsonConverter.cs │ ├── FieldDefault.cs │ ├── FieldDefinition.cs │ ├── FieldDefinitionBuilder.cs │ ├── FieldMap.cs │ ├── FluentCommand.Import.csproj │ ├── IFieldTranslator.cs │ ├── IImportValidator.cs │ ├── ImportData.cs │ ├── ImportDefinition.cs │ ├── ImportDefinitionBuilder.cs │ ├── ImportFieldMapping.cs │ ├── ImportJsonContext.cs │ └── ImportResult.cs ├── FluentCommand.Json │ ├── ConcurrencyTokenJsonConverter.cs │ ├── FluentCommand.Json.csproj │ └── JsonCommandExtensions.cs ├── FluentCommand.SqlServer │ ├── Bulk │ │ ├── DataBulkCopy.cs │ │ ├── DataBulkCopyExtensions.cs │ │ ├── DataBulkCopyMapping.cs │ │ └── IDataBulkCopy.cs │ ├── DataConfigurationBuilderExtensions.cs │ ├── FluentCommand.SqlServer.csproj │ ├── Import │ │ ├── IImportProcessor.cs │ │ ├── ImportDefinitionBuilder.cs │ │ ├── ImportProcessContext.cs │ │ ├── ImportProcessor.cs │ │ └── ImportValidator.cs │ ├── ImportServiceCollectionExtensions.cs │ ├── Merge │ │ ├── DataMerge.cs │ │ ├── DataMergeColumn.cs │ │ ├── DataMergeColumnMapping.cs │ │ ├── DataMergeDefinition.cs │ │ ├── DataMergeExtensions.cs │ │ ├── DataMergeGenerator.cs │ │ ├── DataMergeMapping.cs │ │ ├── DataMergeMode.cs │ │ ├── DataMergeOutputColumn.cs │ │ ├── DataMergeOutputRow.cs │ │ ├── DataReaderWrapper.cs │ │ ├── IDataColumnMapping.cs │ │ ├── IDataMerge.cs │ │ └── IDataMergeMapping.cs │ ├── Query │ │ ├── ChangeTableBuilder.cs │ │ ├── ChangeTableBuilderExtensions.cs │ │ ├── TemporalBuilder.cs │ │ └── TemporalBuilderExtensions.cs │ ├── SqlCommandExtensions.cs │ └── SqlTypeMapping.cs └── FluentCommand │ ├── Attributes │ └── GenerateReaderAttribute.cs │ ├── ConcurrencyToken.cs │ ├── DataCallback.cs │ ├── DataCommand.cs │ ├── DataCommandExtensions.cs │ ├── DataConfiguration.cs │ ├── DataConfigurationBuilder.cs │ ├── DataFieldConverterAttribute.cs │ ├── DataMapping.cs │ ├── DataParameter.cs │ ├── DataParameterHandlers.cs │ ├── DataQueryExtensions.cs │ ├── DataQueryFormatter.cs │ ├── DataQueryLogger.cs │ ├── DataReaderExtensions.cs │ ├── DataSession.cs │ ├── DisposableBase.cs │ ├── Extensions │ ├── CollectionExtensions.cs │ ├── ConvertExtensions.cs │ ├── DataRecordExtensions.cs │ ├── DataTableExtensions.cs │ ├── EnumExtensions.cs │ ├── EnumerableExtensions.cs │ ├── StringBuilderExtensions.cs │ ├── StringExtensions.cs │ └── TypeExtensions.cs │ ├── FluentCommand.csproj │ ├── Handlers │ ├── ConcurrencyTokenHandler.cs │ ├── DateOnlyHandler.cs │ └── TimeOnlyHandler.cs │ ├── IDataCache.cs │ ├── IDataCommand.cs │ ├── IDataConfiguration.cs │ ├── IDataFieldConverter.cs │ ├── IDataParameter.cs │ ├── IDataParameterHandler.cs │ ├── IDataQuery.cs │ ├── IDataQueryAsync.cs │ ├── IDataQueryFormatter.cs │ ├── IDataQueryLogger.cs │ ├── IDataSession.cs │ ├── IDataSessionFactory.cs │ ├── Internal │ ├── HashCode.cs │ ├── Internals.cs │ ├── Singleton.cs │ └── StringBuilderCache.cs │ ├── ListDataReader.cs │ ├── Query │ ├── AggregateFunctions.cs │ ├── DeleteBuilder.cs │ ├── DeleteEntityBuilder.cs │ ├── FilterOperators.cs │ ├── Generators │ │ ├── IQueryGenerator.cs │ │ ├── PostgresqlGenerator.cs │ │ ├── QueryExpressions.cs │ │ ├── SqlServerGenerator.cs │ │ └── SqliteGenerator.cs │ ├── IQueryBuilder.cs │ ├── IQueryStatement.cs │ ├── IStatementBuilder.cs │ ├── IWhereEntityBuilder.cs │ ├── InsertBuilder.cs │ ├── InsertEntityBuilder.cs │ ├── JoinBuilder.cs │ ├── JoinEntityBuilder.cs │ ├── JoinTypes.cs │ ├── LogicalBuilder.cs │ ├── LogicalEntityBuilder.cs │ ├── LogicalOperators.cs │ ├── OrderBuilder.cs │ ├── OrderEntityBuilder.cs │ ├── QueryBuilder.cs │ ├── QueryBuilderExtensions.cs │ ├── QueryParameter.cs │ ├── QueryStatement.cs │ ├── SelectBuilder.cs │ ├── SelectEntityBuilder.cs │ ├── SortDirections.cs │ ├── StatementBuilder.cs │ ├── UpdateBuilder.cs │ ├── UpdateEntityBuilder.cs │ ├── WhereBuilder.cs │ └── WhereEntityBuilder.cs │ ├── QueryMultipleResult.cs │ ├── Reflection │ ├── ExpressionFactory.cs │ ├── FieldAccessor.cs │ ├── IMemberAccessor.cs │ ├── IMemberInformation.cs │ ├── IMethodAccessor.cs │ ├── MemberAccessor.cs │ ├── MethodAccessor.cs │ ├── PropertyAccessor.cs │ └── TypeAccessor.cs │ └── ServiceCollectionExtensions.cs └── test ├── Directory.Build.props ├── FluentCommand.Batch.Tests ├── DataBulkCopyTests.cs ├── DataMergeGeneratorTests.cs ├── FluentCommand.Batch.Tests.csproj ├── UserProfile.cs ├── appsettings.appveyor.json └── appsettings.json ├── FluentCommand.Entities ├── Audit.cs ├── Brand.cs ├── DataType.cs ├── FluentCommand.Entities.csproj ├── Internal │ └── IsExternalInit.cs ├── Member.cs ├── Priority.cs ├── Product.cs ├── ReaderGeneration.cs ├── Role.cs ├── Status.cs ├── StatusConstructor.cs ├── StatusReadOnly.cs ├── StatusRecord.cs ├── TableTest.cs ├── Task.cs ├── TaskExtended.cs ├── User.cs ├── UserImport.cs ├── UserLogin.cs └── UserRole.cs ├── FluentCommand.Generators.Tests ├── DataReaderFactoryWriterTests.cs ├── FluentCommand.Generators.Tests.csproj └── Snapshots │ └── DataReaderFactoryWriterTests.Generate.verified.txt ├── FluentCommand.Performance ├── BenchmarkBase.cs ├── DapperBenchmarks.cs ├── FluentCommand.Performance.csproj ├── FluentCommandBenchmarks.cs ├── HandCodedBenchmarks.cs ├── Post.cs ├── Program.cs └── PropertyAccessorBenchmark.cs ├── FluentCommand.PostgreSQL.Tests ├── DataCommandSqlAsyncTests.cs ├── DataCommandSqlTests.cs ├── DataQueryTests.cs ├── DatabaseCollection.cs ├── DatabaseFixture.cs ├── DatabaseInitializer.cs ├── DatabaseTestBase.cs ├── FluentCommand.PostgreSQL.Tests.csproj ├── Scripts │ ├── Script001.Tracker.Schema.sql │ └── Script002.Tracker.Data.sql ├── appsettings.appveyor.json ├── appsettings.github.json └── appsettings.json ├── FluentCommand.SQLite.Tests ├── DataCommandSqlAsyncTests.cs ├── DataCommandSqlTests.cs ├── DataQueryTests.cs ├── DatabaseCollection.cs ├── DatabaseFixture.cs ├── DatabaseInitializer.cs ├── DatabaseTestBase.cs ├── FluentCommand.SQLite.Tests.csproj ├── Scripts │ ├── Script001.Tracker.Schema.sql │ └── Script002.Tracker.Data.sql └── appsettings.json ├── FluentCommand.SqlServer.Tests ├── CsvTests.cs ├── DataBulkCopyTests.cs ├── DataCacheTests.cs ├── DataCommandProcedureTests.cs ├── DataCommandSqlAsyncTests.cs ├── DataCommandSqlTests.cs ├── DataConfigurationTests.cs ├── DataMergeGeneratorTests.cs ├── DataMergeTests.cs ├── DataQueryTests.cs ├── DataSessionTests.cs ├── DatabaseCollection.cs ├── DatabaseFixture.cs ├── DatabaseInitializer.cs ├── DatabaseTestBase.cs ├── FluentCommand.SqlServer.Tests.csproj ├── GeneratorTests.cs ├── ImportDefinitionBuilderTests.cs ├── ImportDefinitionTests.cs ├── ImportProcessorTests.cs ├── JsonTests.cs ├── ReadOnlyIntent.cs ├── Scripts │ ├── Script001.Tracker.Schema.sql │ ├── Script002.Tracker.Data.sql │ └── Script003.Tracker.StoredProcedure.sql ├── Snapshots │ ├── DataMergeGeneratorTests.BuildMergeDataMismatchTests.verified.txt │ ├── DataMergeGeneratorTests.BuildMergeDataOutputTests.verified.txt │ ├── DataMergeGeneratorTests.BuildMergeDataTableTests.verified.txt │ ├── DataMergeGeneratorTests.BuildMergeDataTests.verified.txt │ ├── DataMergeGeneratorTests.BuildMergeDataTypeTests.verified.txt │ ├── DataMergeGeneratorTests.BuildMergeTests.verified.txt │ └── DataMergeGeneratorTests.BuildTableSqlTest.verified.txt ├── appsettings.appveyor.json ├── appsettings.github.json ├── appsettings.json └── appsettings.linux.json └── FluentCommand.Tests ├── ConcurrencyTokenTests.cs ├── FluentCommand.Tests.csproj ├── Internal └── HashCodeTests.cs ├── ListDataReaderTests.cs ├── Models ├── Command.cs ├── Parameter.cs ├── Truck.cs ├── User.cs └── Vehicle.cs └── Query ├── DeleteBuilderTest.cs ├── InsertBuilderTest.cs ├── QueryBuilderTests.cs ├── SelectBuilderTest.cs ├── Snapshots ├── DeleteBuilderTest.DeleteEntityJoin.verified.txt ├── DeleteBuilderTest.DeleteEntityWithComment.verified.txt ├── DeleteBuilderTest.DeleteEntityWithOutput.verified.txt ├── InsertBuilderTest.InsertEntityValueWithOutput.verified.txt ├── QueryBuilderTests.QueryBuilderSelect.verified.txt ├── SelectBuilderTest.SelectColumnsAliasWhereTagBuilder.verified.txt ├── SelectBuilderTest.SelectEntityAliasWhereTagBuilder.verified.txt ├── SelectBuilderTest.SelectEntityChangeTableBuilder.verified.txt ├── SelectBuilderTest.SelectEntityFilterBuilder.verified.txt ├── SelectBuilderTest.SelectEntityJoinBuilder.verified.txt ├── SelectBuilderTest.SelectEntityNestedWhereBuilder.verified.txt ├── SelectBuilderTest.SelectEntityTemporalBuilder.verified.txt ├── SelectBuilderTest.SelectEntityWhereIn.verified.txt ├── SelectBuilderTest.SelectEntityWhereInDouble.verified.txt ├── SelectBuilderTest.SelectEntityWhereInIf.verified.txt ├── SelectBuilderTest.SelectEntityWhereLimitBuilder.verified.txt ├── SelectBuilderTest.SelectEntityWhereTagBuilder.verified.txt ├── UpdateBuilderTest.UpdateEntityValueWithJoin.verified.txt └── UpdateBuilderTest.UpdateEntityValueWithOutput.verified.txt └── UpdateBuilderTest.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: loresoft 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/.github/workflows/merge.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /FluentCommand.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/FluentCommand.slnx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/README.md -------------------------------------------------------------------------------- /coverlet.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/coverlet.runsettings -------------------------------------------------------------------------------- /dictionary.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/dictionary.dic -------------------------------------------------------------------------------- /docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/docs/assets/logo.png -------------------------------------------------------------------------------- /docs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/docs/docfx.json -------------------------------------------------------------------------------- /docs/guide/cache.md: -------------------------------------------------------------------------------- 1 | # Caching 2 | -------------------------------------------------------------------------------- /docs/guide/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/docs/guide/configuration.md -------------------------------------------------------------------------------- /docs/guide/generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/docs/guide/generation.md -------------------------------------------------------------------------------- /docs/guide/logging.md: -------------------------------------------------------------------------------- 1 | # Logging 2 | -------------------------------------------------------------------------------- /docs/guide/parameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/docs/guide/parameter.md -------------------------------------------------------------------------------- /docs/guide/query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/docs/guide/query.md -------------------------------------------------------------------------------- /docs/guide/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/docs/guide/sql.md -------------------------------------------------------------------------------- /docs/guide/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/docs/guide/toc.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/reference/.gitignore: -------------------------------------------------------------------------------- 1 | *.yml 2 | .manifest 3 | -------------------------------------------------------------------------------- /docs/reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/docs/reference/index.md -------------------------------------------------------------------------------- /docs/template/public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/docs/template/public/main.css -------------------------------------------------------------------------------- /docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/docs/toc.yml -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/logo.png -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/FluentCommand.Batch/BatchError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/BatchError.cs -------------------------------------------------------------------------------- /src/FluentCommand.Batch/BatchFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/BatchFactory.cs -------------------------------------------------------------------------------- /src/FluentCommand.Batch/BatchJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/BatchJob.cs -------------------------------------------------------------------------------- /src/FluentCommand.Batch/BatchJobValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/BatchJobValidator.cs -------------------------------------------------------------------------------- /src/FluentCommand.Batch/BatchJobVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/BatchJobVisitor.cs -------------------------------------------------------------------------------- /src/FluentCommand.Batch/BatchProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/BatchProcessor.cs -------------------------------------------------------------------------------- /src/FluentCommand.Batch/FieldDefault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/FieldDefault.cs -------------------------------------------------------------------------------- /src/FluentCommand.Batch/FieldIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/FieldIndex.cs -------------------------------------------------------------------------------- /src/FluentCommand.Batch/FieldMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/FieldMapping.cs -------------------------------------------------------------------------------- /src/FluentCommand.Batch/FieldMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/FieldMatch.cs -------------------------------------------------------------------------------- /src/FluentCommand.Batch/Fluent/BatchBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/Fluent/BatchBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand.Batch/Fluent/BatchFieldBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/Fluent/BatchFieldBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand.Batch/Fluent/BatchMatchBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/Fluent/BatchMatchBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand.Batch/FluentCommand.Batch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/FluentCommand.Batch.csproj -------------------------------------------------------------------------------- /src/FluentCommand.Batch/IBatchFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/IBatchFactory.cs -------------------------------------------------------------------------------- /src/FluentCommand.Batch/IBatchProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/IBatchProcessor.cs -------------------------------------------------------------------------------- /src/FluentCommand.Batch/IBatchTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/IBatchTranslator.cs -------------------------------------------------------------------------------- /src/FluentCommand.Batch/IBatchValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/IBatchValidator.cs -------------------------------------------------------------------------------- /src/FluentCommand.Batch/Translators/TranslatorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/Translators/TranslatorBase.cs -------------------------------------------------------------------------------- /src/FluentCommand.Batch/Validation/BatchValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/Validation/BatchValidator.cs -------------------------------------------------------------------------------- /src/FluentCommand.Batch/Validation/DuplicateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Batch/Validation/DuplicateException.cs -------------------------------------------------------------------------------- /src/FluentCommand.Caching/DataConfigurationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Caching/DataConfigurationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand.Caching/DistributedDataCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Caching/DistributedDataCache.cs -------------------------------------------------------------------------------- /src/FluentCommand.Caching/FluentCommand.Caching.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Caching/FluentCommand.Caching.csproj -------------------------------------------------------------------------------- /src/FluentCommand.Caching/IDistributedCacheSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Caching/IDistributedCacheSerializer.cs -------------------------------------------------------------------------------- /src/FluentCommand.Caching/MessagePackCacheSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Caching/MessagePackCacheSerializer.cs -------------------------------------------------------------------------------- /src/FluentCommand.Csv/CsvCommandExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Csv/CsvCommandExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand.Csv/FluentCommand.Csv.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Csv/FluentCommand.Csv.csproj -------------------------------------------------------------------------------- /src/FluentCommand.Dapper/ConcurrencyTokenTypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Dapper/ConcurrencyTokenTypeHandler.cs -------------------------------------------------------------------------------- /src/FluentCommand.Dapper/DataCommandExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Dapper/DataCommandExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand.Dapper/FluentCommand.Dapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Dapper/FluentCommand.Dapper.csproj -------------------------------------------------------------------------------- /src/FluentCommand.Dapper/ReaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Dapper/ReaderFactory.cs -------------------------------------------------------------------------------- /src/FluentCommand.EntityFactory/DataCommandExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.EntityFactory/DataCommandExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand.EntityFactory/FluentCommand.EntityFactory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.EntityFactory/FluentCommand.EntityFactory.csproj -------------------------------------------------------------------------------- /src/FluentCommand.EntityFactory/ReaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.EntityFactory/ReaderFactory.cs -------------------------------------------------------------------------------- /src/FluentCommand.EntityFactory/Reflection/ReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.EntityFactory/Reflection/ReflectionHelper.cs -------------------------------------------------------------------------------- /src/FluentCommand.Generators/DataReaderFactoryGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Generators/DataReaderFactoryGenerator.cs -------------------------------------------------------------------------------- /src/FluentCommand.Generators/DataReaderFactoryWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Generators/DataReaderFactoryWriter.cs -------------------------------------------------------------------------------- /src/FluentCommand.Generators/DiagnosticDescriptors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Generators/DiagnosticDescriptors.cs -------------------------------------------------------------------------------- /src/FluentCommand.Generators/FluentCommand.Generators.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Generators/FluentCommand.Generators.csproj -------------------------------------------------------------------------------- /src/FluentCommand.Generators/GenerateAttributeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Generators/GenerateAttributeGenerator.cs -------------------------------------------------------------------------------- /src/FluentCommand.Generators/IndentedStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Generators/IndentedStringBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand.Generators/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Generators/IsExternalInit.cs -------------------------------------------------------------------------------- /src/FluentCommand.Generators/Models/EntityClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Generators/Models/EntityClass.cs -------------------------------------------------------------------------------- /src/FluentCommand.Generators/Models/EntityContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Generators/Models/EntityContext.cs -------------------------------------------------------------------------------- /src/FluentCommand.Generators/Models/EntityProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Generators/Models/EntityProperty.cs -------------------------------------------------------------------------------- /src/FluentCommand.Generators/Models/EquatableArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Generators/Models/EquatableArray.cs -------------------------------------------------------------------------------- /src/FluentCommand.Generators/Models/InitializationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Generators/Models/InitializationMode.cs -------------------------------------------------------------------------------- /src/FluentCommand.Generators/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Generators/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/FluentCommand.Generators/TableAttributeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Generators/TableAttributeGenerator.cs -------------------------------------------------------------------------------- /src/FluentCommand.Import/Converters/TypeJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Import/Converters/TypeJsonConverter.cs -------------------------------------------------------------------------------- /src/FluentCommand.Import/FieldDefault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Import/FieldDefault.cs -------------------------------------------------------------------------------- /src/FluentCommand.Import/FieldDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Import/FieldDefinition.cs -------------------------------------------------------------------------------- /src/FluentCommand.Import/FieldDefinitionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Import/FieldDefinitionBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand.Import/FieldMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Import/FieldMap.cs -------------------------------------------------------------------------------- /src/FluentCommand.Import/FluentCommand.Import.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Import/FluentCommand.Import.csproj -------------------------------------------------------------------------------- /src/FluentCommand.Import/IFieldTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Import/IFieldTranslator.cs -------------------------------------------------------------------------------- /src/FluentCommand.Import/IImportValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Import/IImportValidator.cs -------------------------------------------------------------------------------- /src/FluentCommand.Import/ImportData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Import/ImportData.cs -------------------------------------------------------------------------------- /src/FluentCommand.Import/ImportDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Import/ImportDefinition.cs -------------------------------------------------------------------------------- /src/FluentCommand.Import/ImportDefinitionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Import/ImportDefinitionBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand.Import/ImportFieldMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Import/ImportFieldMapping.cs -------------------------------------------------------------------------------- /src/FluentCommand.Import/ImportJsonContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Import/ImportJsonContext.cs -------------------------------------------------------------------------------- /src/FluentCommand.Import/ImportResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Import/ImportResult.cs -------------------------------------------------------------------------------- /src/FluentCommand.Json/ConcurrencyTokenJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Json/ConcurrencyTokenJsonConverter.cs -------------------------------------------------------------------------------- /src/FluentCommand.Json/FluentCommand.Json.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Json/FluentCommand.Json.csproj -------------------------------------------------------------------------------- /src/FluentCommand.Json/JsonCommandExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.Json/JsonCommandExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Bulk/DataBulkCopy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Bulk/DataBulkCopy.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Bulk/DataBulkCopyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Bulk/DataBulkCopyExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Bulk/DataBulkCopyMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Bulk/DataBulkCopyMapping.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Bulk/IDataBulkCopy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Bulk/IDataBulkCopy.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/DataConfigurationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/DataConfigurationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/FluentCommand.SqlServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/FluentCommand.SqlServer.csproj -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Import/IImportProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Import/IImportProcessor.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Import/ImportDefinitionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Import/ImportDefinitionBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Import/ImportProcessContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Import/ImportProcessContext.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Import/ImportProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Import/ImportProcessor.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Import/ImportValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Import/ImportValidator.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/ImportServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/ImportServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Merge/DataMerge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Merge/DataMerge.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Merge/DataMergeColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Merge/DataMergeColumn.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Merge/DataMergeColumnMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Merge/DataMergeColumnMapping.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Merge/DataMergeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Merge/DataMergeDefinition.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Merge/DataMergeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Merge/DataMergeExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Merge/DataMergeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Merge/DataMergeGenerator.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Merge/DataMergeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Merge/DataMergeMapping.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Merge/DataMergeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Merge/DataMergeMode.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Merge/DataMergeOutputColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Merge/DataMergeOutputColumn.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Merge/DataMergeOutputRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Merge/DataMergeOutputRow.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Merge/DataReaderWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Merge/DataReaderWrapper.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Merge/IDataColumnMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Merge/IDataColumnMapping.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Merge/IDataMerge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Merge/IDataMerge.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Merge/IDataMergeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Merge/IDataMergeMapping.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Query/ChangeTableBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Query/ChangeTableBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Query/ChangeTableBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Query/ChangeTableBuilderExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Query/TemporalBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Query/TemporalBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/Query/TemporalBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/Query/TemporalBuilderExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/SqlCommandExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/SqlCommandExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand.SqlServer/SqlTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand.SqlServer/SqlTypeMapping.cs -------------------------------------------------------------------------------- /src/FluentCommand/Attributes/GenerateReaderAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Attributes/GenerateReaderAttribute.cs -------------------------------------------------------------------------------- /src/FluentCommand/ConcurrencyToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/ConcurrencyToken.cs -------------------------------------------------------------------------------- /src/FluentCommand/DataCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/DataCallback.cs -------------------------------------------------------------------------------- /src/FluentCommand/DataCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/DataCommand.cs -------------------------------------------------------------------------------- /src/FluentCommand/DataCommandExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/DataCommandExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand/DataConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/DataConfiguration.cs -------------------------------------------------------------------------------- /src/FluentCommand/DataConfigurationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/DataConfigurationBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/DataFieldConverterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/DataFieldConverterAttribute.cs -------------------------------------------------------------------------------- /src/FluentCommand/DataMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/DataMapping.cs -------------------------------------------------------------------------------- /src/FluentCommand/DataParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/DataParameter.cs -------------------------------------------------------------------------------- /src/FluentCommand/DataParameterHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/DataParameterHandlers.cs -------------------------------------------------------------------------------- /src/FluentCommand/DataQueryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/DataQueryExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand/DataQueryFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/DataQueryFormatter.cs -------------------------------------------------------------------------------- /src/FluentCommand/DataQueryLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/DataQueryLogger.cs -------------------------------------------------------------------------------- /src/FluentCommand/DataReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/DataReaderExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand/DataSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/DataSession.cs -------------------------------------------------------------------------------- /src/FluentCommand/DisposableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/DisposableBase.cs -------------------------------------------------------------------------------- /src/FluentCommand/Extensions/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Extensions/CollectionExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand/Extensions/ConvertExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Extensions/ConvertExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand/Extensions/DataRecordExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Extensions/DataRecordExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand/Extensions/DataTableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Extensions/DataTableExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand/Extensions/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Extensions/EnumExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand/Extensions/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Extensions/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand/Extensions/StringBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Extensions/StringBuilderExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand/Extensions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Extensions/TypeExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand/FluentCommand.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/FluentCommand.csproj -------------------------------------------------------------------------------- /src/FluentCommand/Handlers/ConcurrencyTokenHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Handlers/ConcurrencyTokenHandler.cs -------------------------------------------------------------------------------- /src/FluentCommand/Handlers/DateOnlyHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Handlers/DateOnlyHandler.cs -------------------------------------------------------------------------------- /src/FluentCommand/Handlers/TimeOnlyHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Handlers/TimeOnlyHandler.cs -------------------------------------------------------------------------------- /src/FluentCommand/IDataCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/IDataCache.cs -------------------------------------------------------------------------------- /src/FluentCommand/IDataCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/IDataCommand.cs -------------------------------------------------------------------------------- /src/FluentCommand/IDataConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/IDataConfiguration.cs -------------------------------------------------------------------------------- /src/FluentCommand/IDataFieldConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/IDataFieldConverter.cs -------------------------------------------------------------------------------- /src/FluentCommand/IDataParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/IDataParameter.cs -------------------------------------------------------------------------------- /src/FluentCommand/IDataParameterHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/IDataParameterHandler.cs -------------------------------------------------------------------------------- /src/FluentCommand/IDataQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/IDataQuery.cs -------------------------------------------------------------------------------- /src/FluentCommand/IDataQueryAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/IDataQueryAsync.cs -------------------------------------------------------------------------------- /src/FluentCommand/IDataQueryFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/IDataQueryFormatter.cs -------------------------------------------------------------------------------- /src/FluentCommand/IDataQueryLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/IDataQueryLogger.cs -------------------------------------------------------------------------------- /src/FluentCommand/IDataSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/IDataSession.cs -------------------------------------------------------------------------------- /src/FluentCommand/IDataSessionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/IDataSessionFactory.cs -------------------------------------------------------------------------------- /src/FluentCommand/Internal/HashCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Internal/HashCode.cs -------------------------------------------------------------------------------- /src/FluentCommand/Internal/Internals.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("FluentCommand.Tests")] 4 | -------------------------------------------------------------------------------- /src/FluentCommand/Internal/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Internal/Singleton.cs -------------------------------------------------------------------------------- /src/FluentCommand/Internal/StringBuilderCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Internal/StringBuilderCache.cs -------------------------------------------------------------------------------- /src/FluentCommand/ListDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/ListDataReader.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/AggregateFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/AggregateFunctions.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/DeleteBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/DeleteBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/DeleteEntityBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/DeleteEntityBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/FilterOperators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/FilterOperators.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/Generators/IQueryGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/Generators/IQueryGenerator.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/Generators/PostgresqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/Generators/PostgresqlGenerator.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/Generators/QueryExpressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/Generators/QueryExpressions.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/Generators/SqlServerGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/Generators/SqlServerGenerator.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/Generators/SqliteGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/Generators/SqliteGenerator.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/IQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/IQueryBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/IQueryStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/IQueryStatement.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/IStatementBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/IStatementBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/IWhereEntityBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/IWhereEntityBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/InsertBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/InsertBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/InsertEntityBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/InsertEntityBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/JoinBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/JoinBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/JoinEntityBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/JoinEntityBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/JoinTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/JoinTypes.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/LogicalBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/LogicalBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/LogicalEntityBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/LogicalEntityBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/LogicalOperators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/LogicalOperators.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/OrderBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/OrderBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/OrderEntityBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/OrderEntityBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/QueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/QueryBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/QueryBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/QueryBuilderExtensions.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/QueryParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/QueryParameter.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/QueryStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/QueryStatement.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/SelectBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/SelectBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/SelectEntityBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/SelectEntityBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/SortDirections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/SortDirections.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/StatementBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/StatementBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/UpdateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/UpdateBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/UpdateEntityBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/UpdateEntityBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/WhereBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/WhereBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/Query/WhereEntityBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Query/WhereEntityBuilder.cs -------------------------------------------------------------------------------- /src/FluentCommand/QueryMultipleResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/QueryMultipleResult.cs -------------------------------------------------------------------------------- /src/FluentCommand/Reflection/ExpressionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Reflection/ExpressionFactory.cs -------------------------------------------------------------------------------- /src/FluentCommand/Reflection/FieldAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Reflection/FieldAccessor.cs -------------------------------------------------------------------------------- /src/FluentCommand/Reflection/IMemberAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Reflection/IMemberAccessor.cs -------------------------------------------------------------------------------- /src/FluentCommand/Reflection/IMemberInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Reflection/IMemberInformation.cs -------------------------------------------------------------------------------- /src/FluentCommand/Reflection/IMethodAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Reflection/IMethodAccessor.cs -------------------------------------------------------------------------------- /src/FluentCommand/Reflection/MemberAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Reflection/MemberAccessor.cs -------------------------------------------------------------------------------- /src/FluentCommand/Reflection/MethodAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Reflection/MethodAccessor.cs -------------------------------------------------------------------------------- /src/FluentCommand/Reflection/PropertyAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Reflection/PropertyAccessor.cs -------------------------------------------------------------------------------- /src/FluentCommand/Reflection/TypeAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/Reflection/TypeAccessor.cs -------------------------------------------------------------------------------- /src/FluentCommand/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/src/FluentCommand/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/FluentCommand.Batch.Tests/DataBulkCopyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Batch.Tests/DataBulkCopyTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.Batch.Tests/DataMergeGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Batch.Tests/DataMergeGeneratorTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.Batch.Tests/FluentCommand.Batch.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Batch.Tests/FluentCommand.Batch.Tests.csproj -------------------------------------------------------------------------------- /test/FluentCommand.Batch.Tests/UserProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Batch.Tests/UserProfile.cs -------------------------------------------------------------------------------- /test/FluentCommand.Batch.Tests/appsettings.appveyor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Batch.Tests/appsettings.appveyor.json -------------------------------------------------------------------------------- /test/FluentCommand.Batch.Tests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Batch.Tests/appsettings.json -------------------------------------------------------------------------------- /test/FluentCommand.Entities/Audit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/Audit.cs -------------------------------------------------------------------------------- /test/FluentCommand.Entities/Brand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/Brand.cs -------------------------------------------------------------------------------- /test/FluentCommand.Entities/DataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/DataType.cs -------------------------------------------------------------------------------- /test/FluentCommand.Entities/FluentCommand.Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/FluentCommand.Entities.csproj -------------------------------------------------------------------------------- /test/FluentCommand.Entities/Internal/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/Internal/IsExternalInit.cs -------------------------------------------------------------------------------- /test/FluentCommand.Entities/Member.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/Member.cs -------------------------------------------------------------------------------- /test/FluentCommand.Entities/Priority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/Priority.cs -------------------------------------------------------------------------------- /test/FluentCommand.Entities/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/Product.cs -------------------------------------------------------------------------------- /test/FluentCommand.Entities/ReaderGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/ReaderGeneration.cs -------------------------------------------------------------------------------- /test/FluentCommand.Entities/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/Role.cs -------------------------------------------------------------------------------- /test/FluentCommand.Entities/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/Status.cs -------------------------------------------------------------------------------- /test/FluentCommand.Entities/StatusConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/StatusConstructor.cs -------------------------------------------------------------------------------- /test/FluentCommand.Entities/StatusReadOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/StatusReadOnly.cs -------------------------------------------------------------------------------- /test/FluentCommand.Entities/StatusRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/StatusRecord.cs -------------------------------------------------------------------------------- /test/FluentCommand.Entities/TableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/TableTest.cs -------------------------------------------------------------------------------- /test/FluentCommand.Entities/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/Task.cs -------------------------------------------------------------------------------- /test/FluentCommand.Entities/TaskExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/TaskExtended.cs -------------------------------------------------------------------------------- /test/FluentCommand.Entities/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/User.cs -------------------------------------------------------------------------------- /test/FluentCommand.Entities/UserImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/UserImport.cs -------------------------------------------------------------------------------- /test/FluentCommand.Entities/UserLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/UserLogin.cs -------------------------------------------------------------------------------- /test/FluentCommand.Entities/UserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Entities/UserRole.cs -------------------------------------------------------------------------------- /test/FluentCommand.Generators.Tests/DataReaderFactoryWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Generators.Tests/DataReaderFactoryWriterTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.Generators.Tests/FluentCommand.Generators.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Generators.Tests/FluentCommand.Generators.Tests.csproj -------------------------------------------------------------------------------- /test/FluentCommand.Generators.Tests/Snapshots/DataReaderFactoryWriterTests.Generate.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Generators.Tests/Snapshots/DataReaderFactoryWriterTests.Generate.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Performance/BenchmarkBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Performance/BenchmarkBase.cs -------------------------------------------------------------------------------- /test/FluentCommand.Performance/DapperBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Performance/DapperBenchmarks.cs -------------------------------------------------------------------------------- /test/FluentCommand.Performance/FluentCommand.Performance.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Performance/FluentCommand.Performance.csproj -------------------------------------------------------------------------------- /test/FluentCommand.Performance/FluentCommandBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Performance/FluentCommandBenchmarks.cs -------------------------------------------------------------------------------- /test/FluentCommand.Performance/HandCodedBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Performance/HandCodedBenchmarks.cs -------------------------------------------------------------------------------- /test/FluentCommand.Performance/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Performance/Post.cs -------------------------------------------------------------------------------- /test/FluentCommand.Performance/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Performance/Program.cs -------------------------------------------------------------------------------- /test/FluentCommand.Performance/PropertyAccessorBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Performance/PropertyAccessorBenchmark.cs -------------------------------------------------------------------------------- /test/FluentCommand.PostgreSQL.Tests/DataCommandSqlAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.PostgreSQL.Tests/DataCommandSqlAsyncTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.PostgreSQL.Tests/DataCommandSqlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.PostgreSQL.Tests/DataCommandSqlTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.PostgreSQL.Tests/DataQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.PostgreSQL.Tests/DataQueryTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.PostgreSQL.Tests/DatabaseCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.PostgreSQL.Tests/DatabaseCollection.cs -------------------------------------------------------------------------------- /test/FluentCommand.PostgreSQL.Tests/DatabaseFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.PostgreSQL.Tests/DatabaseFixture.cs -------------------------------------------------------------------------------- /test/FluentCommand.PostgreSQL.Tests/DatabaseInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.PostgreSQL.Tests/DatabaseInitializer.cs -------------------------------------------------------------------------------- /test/FluentCommand.PostgreSQL.Tests/DatabaseTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.PostgreSQL.Tests/DatabaseTestBase.cs -------------------------------------------------------------------------------- /test/FluentCommand.PostgreSQL.Tests/FluentCommand.PostgreSQL.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.PostgreSQL.Tests/FluentCommand.PostgreSQL.Tests.csproj -------------------------------------------------------------------------------- /test/FluentCommand.PostgreSQL.Tests/Scripts/Script001.Tracker.Schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.PostgreSQL.Tests/Scripts/Script001.Tracker.Schema.sql -------------------------------------------------------------------------------- /test/FluentCommand.PostgreSQL.Tests/Scripts/Script002.Tracker.Data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.PostgreSQL.Tests/Scripts/Script002.Tracker.Data.sql -------------------------------------------------------------------------------- /test/FluentCommand.PostgreSQL.Tests/appsettings.appveyor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.PostgreSQL.Tests/appsettings.appveyor.json -------------------------------------------------------------------------------- /test/FluentCommand.PostgreSQL.Tests/appsettings.github.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.PostgreSQL.Tests/appsettings.github.json -------------------------------------------------------------------------------- /test/FluentCommand.PostgreSQL.Tests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.PostgreSQL.Tests/appsettings.json -------------------------------------------------------------------------------- /test/FluentCommand.SQLite.Tests/DataCommandSqlAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SQLite.Tests/DataCommandSqlAsyncTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.SQLite.Tests/DataCommandSqlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SQLite.Tests/DataCommandSqlTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.SQLite.Tests/DataQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SQLite.Tests/DataQueryTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.SQLite.Tests/DatabaseCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SQLite.Tests/DatabaseCollection.cs -------------------------------------------------------------------------------- /test/FluentCommand.SQLite.Tests/DatabaseFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SQLite.Tests/DatabaseFixture.cs -------------------------------------------------------------------------------- /test/FluentCommand.SQLite.Tests/DatabaseInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SQLite.Tests/DatabaseInitializer.cs -------------------------------------------------------------------------------- /test/FluentCommand.SQLite.Tests/DatabaseTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SQLite.Tests/DatabaseTestBase.cs -------------------------------------------------------------------------------- /test/FluentCommand.SQLite.Tests/FluentCommand.SQLite.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SQLite.Tests/FluentCommand.SQLite.Tests.csproj -------------------------------------------------------------------------------- /test/FluentCommand.SQLite.Tests/Scripts/Script001.Tracker.Schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SQLite.Tests/Scripts/Script001.Tracker.Schema.sql -------------------------------------------------------------------------------- /test/FluentCommand.SQLite.Tests/Scripts/Script002.Tracker.Data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SQLite.Tests/Scripts/Script002.Tracker.Data.sql -------------------------------------------------------------------------------- /test/FluentCommand.SQLite.Tests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SQLite.Tests/appsettings.json -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/CsvTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/CsvTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/DataBulkCopyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/DataBulkCopyTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/DataCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/DataCacheTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/DataCommandProcedureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/DataCommandProcedureTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/DataCommandSqlAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/DataCommandSqlAsyncTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/DataCommandSqlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/DataCommandSqlTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/DataConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/DataConfigurationTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/DataMergeGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/DataMergeGeneratorTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/DataMergeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/DataMergeTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/DataQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/DataQueryTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/DataSessionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/DataSessionTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/DatabaseCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/DatabaseCollection.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/DatabaseFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/DatabaseFixture.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/DatabaseInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/DatabaseInitializer.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/DatabaseTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/DatabaseTestBase.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/FluentCommand.SqlServer.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/FluentCommand.SqlServer.Tests.csproj -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/GeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/GeneratorTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/ImportDefinitionBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/ImportDefinitionBuilderTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/ImportDefinitionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/ImportDefinitionTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/ImportProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/ImportProcessorTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/JsonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/JsonTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/ReadOnlyIntent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/ReadOnlyIntent.cs -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/Scripts/Script001.Tracker.Schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/Scripts/Script001.Tracker.Schema.sql -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/Scripts/Script002.Tracker.Data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/Scripts/Script002.Tracker.Data.sql -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/Scripts/Script003.Tracker.StoredProcedure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/Scripts/Script003.Tracker.StoredProcedure.sql -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/Snapshots/DataMergeGeneratorTests.BuildMergeDataMismatchTests.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/Snapshots/DataMergeGeneratorTests.BuildMergeDataMismatchTests.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/Snapshots/DataMergeGeneratorTests.BuildMergeDataOutputTests.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/Snapshots/DataMergeGeneratorTests.BuildMergeDataOutputTests.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/Snapshots/DataMergeGeneratorTests.BuildMergeDataTableTests.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/Snapshots/DataMergeGeneratorTests.BuildMergeDataTableTests.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/Snapshots/DataMergeGeneratorTests.BuildMergeDataTests.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/Snapshots/DataMergeGeneratorTests.BuildMergeDataTests.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/Snapshots/DataMergeGeneratorTests.BuildMergeDataTypeTests.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/Snapshots/DataMergeGeneratorTests.BuildMergeDataTypeTests.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/Snapshots/DataMergeGeneratorTests.BuildMergeTests.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/Snapshots/DataMergeGeneratorTests.BuildMergeTests.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/Snapshots/DataMergeGeneratorTests.BuildTableSqlTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/Snapshots/DataMergeGeneratorTests.BuildTableSqlTest.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/appsettings.appveyor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/appsettings.appveyor.json -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/appsettings.github.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/appsettings.github.json -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/appsettings.json -------------------------------------------------------------------------------- /test/FluentCommand.SqlServer.Tests/appsettings.linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.SqlServer.Tests/appsettings.linux.json -------------------------------------------------------------------------------- /test/FluentCommand.Tests/ConcurrencyTokenTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/ConcurrencyTokenTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.Tests/FluentCommand.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/FluentCommand.Tests.csproj -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Internal/HashCodeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Internal/HashCodeTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.Tests/ListDataReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/ListDataReaderTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Models/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Models/Command.cs -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Models/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Models/Parameter.cs -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Models/Truck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Models/Truck.cs -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Models/User.cs -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Models/Vehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Models/Vehicle.cs -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/DeleteBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/DeleteBuilderTest.cs -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/InsertBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/InsertBuilderTest.cs -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/QueryBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/QueryBuilderTests.cs -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/SelectBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/SelectBuilderTest.cs -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/Snapshots/DeleteBuilderTest.DeleteEntityJoin.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/Snapshots/DeleteBuilderTest.DeleteEntityJoin.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/Snapshots/DeleteBuilderTest.DeleteEntityWithComment.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/Snapshots/DeleteBuilderTest.DeleteEntityWithComment.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/Snapshots/DeleteBuilderTest.DeleteEntityWithOutput.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/Snapshots/DeleteBuilderTest.DeleteEntityWithOutput.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/Snapshots/InsertBuilderTest.InsertEntityValueWithOutput.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/Snapshots/InsertBuilderTest.InsertEntityValueWithOutput.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/Snapshots/QueryBuilderTests.QueryBuilderSelect.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/Snapshots/QueryBuilderTests.QueryBuilderSelect.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectColumnsAliasWhereTagBuilder.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectColumnsAliasWhereTagBuilder.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityAliasWhereTagBuilder.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityAliasWhereTagBuilder.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityChangeTableBuilder.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityChangeTableBuilder.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityFilterBuilder.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityFilterBuilder.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityJoinBuilder.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityJoinBuilder.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityNestedWhereBuilder.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityNestedWhereBuilder.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityTemporalBuilder.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityTemporalBuilder.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereIn.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereIn.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereInDouble.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereInDouble.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereInIf.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereInIf.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereLimitBuilder.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereLimitBuilder.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereTagBuilder.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereTagBuilder.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/Snapshots/UpdateBuilderTest.UpdateEntityValueWithJoin.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/Snapshots/UpdateBuilderTest.UpdateEntityValueWithJoin.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/Snapshots/UpdateBuilderTest.UpdateEntityValueWithOutput.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/Snapshots/UpdateBuilderTest.UpdateEntityValueWithOutput.verified.txt -------------------------------------------------------------------------------- /test/FluentCommand.Tests/Query/UpdateBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentCommand/HEAD/test/FluentCommand.Tests/Query/UpdateBuilderTest.cs --------------------------------------------------------------------------------