├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── analyzer-suggestion.md │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── dotnet-integration.yml │ └── dotnet.yml ├── .gitignore ├── Build.csproj ├── Dapper.AOT.sln ├── Dapper.AOT.snk ├── Dapper.png ├── Directory.Build.props ├── Directory.Packages.props ├── License.txt ├── README.md ├── docs ├── CNAME ├── bulkcopy.md ├── docs.csproj ├── faq.md ├── generatedcode.md ├── gettingstarted.md ├── readme.md ├── rules │ ├── DAP000.md │ ├── DAP001.md │ ├── DAP004.md │ ├── DAP005.md │ ├── DAP006.md │ ├── DAP007.md │ ├── DAP009.md │ ├── DAP011.md │ ├── DAP012.md │ ├── DAP013.md │ ├── DAP014.md │ ├── DAP015.md │ ├── DAP016.md │ ├── DAP017.md │ ├── DAP018.md │ ├── DAP019.md │ ├── DAP021.md │ ├── DAP022.md │ ├── DAP023.md │ ├── DAP024.md │ ├── DAP025.md │ ├── DAP026.md │ ├── DAP027.md │ ├── DAP028.md │ ├── DAP029.md │ ├── DAP030.md │ ├── DAP031.md │ ├── DAP032.md │ ├── DAP033.md │ ├── DAP034.md │ ├── DAP035.md │ ├── DAP036.md │ ├── DAP037.md │ ├── DAP038.md │ ├── DAP039.md │ ├── DAP041.md │ ├── DAP042.md │ ├── DAP043.md │ ├── DAP044.md │ ├── DAP045.md │ ├── DAP046.md │ ├── DAP047.md │ ├── DAP048.md │ ├── DAP049.md │ ├── DAP200.md │ ├── DAP201.md │ ├── DAP202.md │ ├── DAP203.md │ ├── DAP204.md │ ├── DAP205.md │ ├── DAP206.md │ ├── DAP207.md │ ├── DAP208.md │ ├── DAP209.md │ ├── DAP210.md │ ├── DAP211.md │ ├── DAP212.md │ ├── DAP213.md │ ├── DAP214.md │ ├── DAP215.md │ ├── DAP216.md │ ├── DAP217.md │ ├── DAP218.md │ ├── DAP219.md │ ├── DAP220.md │ ├── DAP221.md │ ├── DAP222.md │ ├── DAP223.md │ ├── DAP224.md │ ├── DAP225.md │ ├── DAP226.md │ ├── DAP227.md │ ├── DAP228.md │ ├── DAP229.md │ ├── DAP230.md │ ├── DAP231.md │ ├── DAP232.md │ ├── DAP233.md │ ├── DAP234.md │ ├── DAP235.md │ ├── DAP236.md │ ├── DAP237.md │ ├── DAP238.md │ ├── DAP239.md │ ├── DAP240.md │ ├── DAP241.md │ ├── DAP242.md │ ├── DAP243.md │ ├── DAP244.md │ ├── DAP245.md │ └── DAP999.md └── sqlsyntax.md ├── global.json ├── nuget.config ├── src ├── Dapper.AOT.Analyzers │ ├── AotGridReader.cs │ ├── AssemblyInfo.cs │ ├── CodeAnalysis │ │ ├── Abstractions │ │ │ └── InterceptorGeneratorBase.cs │ │ ├── DapperAnalyzer.Diagnostics.cs │ │ ├── DapperAnalyzer.cs │ │ ├── DapperCodeFixes.cs │ │ ├── DapperInterceptorGenerator.Diagnostics.cs │ │ ├── DapperInterceptorGenerator.Multi.cs │ │ ├── DapperInterceptorGenerator.Single.cs │ │ ├── DapperInterceptorGenerator.cs │ │ ├── Diagnostics.cs │ │ ├── Extensions │ │ │ └── IncludedGenerationExtensions.cs │ │ ├── GeneratorContext.cs │ │ ├── GlobalOptions.cs │ │ ├── ParseState.cs │ │ ├── TypeAccessorInterceptorGenerator.Diagnostics.cs │ │ ├── TypeAccessorInterceptorGenerator.cs │ │ └── Writers │ │ │ └── PreGeneratedCodeWriter.cs │ ├── Dapper.AOT.Analyzers.csproj │ ├── InGeneration │ │ ├── DapperHelpers.cs │ │ └── InterceptsLocationAttribute.cs │ ├── IncludedGeneration.cs │ ├── Internal │ │ ├── AdditionalCommandState.cs │ │ ├── CodeWriter.cs │ │ ├── CommandFactoryState.cs │ │ ├── DiagnosticTSqlProcessor.cs │ │ ├── Inspection.cs │ │ ├── MemberMap.cs │ │ ├── Resources.cs │ │ ├── Roslyn │ │ │ ├── LanguageHelper.CSharp.cs │ │ │ ├── LanguageHelper.Null.cs │ │ │ ├── LanguageHelper.VisualBasic.cs │ │ │ ├── LanguageHelper.cs │ │ │ ├── LocationComparer.cs │ │ │ ├── StringSyntaxKind.cs │ │ │ └── TypeSymbolExtensions.cs │ │ ├── RowReaderState.cs │ │ ├── Shims.cs │ │ ├── SqlParameter.cs │ │ ├── SqlTools.cs │ │ └── Types.cs │ └── SqlAnalysis │ │ ├── SqlParseOutputFlags.cs │ │ ├── SqlProcessingContext.cs │ │ ├── SqlSyntax.cs │ │ └── TSqlProcessor.cs ├── Dapper.AOT │ ├── AssemblyInfo.cs │ ├── BatchSizeAttribute.cs │ ├── BindTupleByNameAttribute.cs │ ├── CacheCommandAttribute.cs │ ├── CommandFactory.cs │ ├── CommandFactoryAttribute.cs │ ├── CommandPropertyAttribute.cs │ ├── CommandT.Batch.cs │ ├── CommandT.Execute.cs │ ├── CommandT.ExecuteScalar.cs │ ├── CommandT.Query.cs │ ├── CommandT.cs │ ├── Dapper.AOT.csproj │ ├── DapperAotAttribute.cs │ ├── DapperAotExtensions.cs │ ├── DbValueAttribute.cs │ ├── ICommand.cs │ ├── IncludeLocationAttribute.cs │ ├── Internal │ │ ├── AsyncCommandState.cs │ │ ├── AsyncQueryState.cs │ │ ├── CollectorT.cs │ │ ├── CommandUtils.cs │ │ ├── CompiledRegex.cs │ │ ├── DynamicRecord.cs │ │ ├── NullableRowFactoryT.cs │ │ ├── OneRowFlags.cs │ │ ├── README.md │ │ ├── StringHashing.cs │ │ ├── SyncCommandState.cs │ │ └── SyncQueryState.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QueryColumnsAttribute.cs │ ├── RowCountAttribute.cs │ ├── RowCountHintAttribute.cs │ ├── RowFactory.cs │ ├── SqlAttribute.cs │ ├── SqlSyntax.cs │ ├── SqlSyntaxAttribute.cs │ ├── StrictTypesAttribute.cs │ ├── TypeAccessor.AccessorDataReader.cs │ ├── TypeAccessor.cs │ ├── TypeHandlerT.cs │ ├── UnifiedCommand.cs │ ├── UseColumnAttributeAttribute.cs │ └── WrappedDbDataReader.cs └── Dapper.Advisor │ ├── Dapper.Advisor.csproj │ └── readme.md ├── startvs.cmd ├── test ├── Dapper.AOT.Test.Integration.Executables │ ├── Dapper.AOT.Test.Integration.Executables.csproj │ ├── ExceptedCodeInterceptorRecorder.cs │ ├── IExecutable.cs │ ├── Models │ │ ├── DateOnlyTimeOnlyPoco.cs │ │ └── DbStringPoco.cs │ ├── Recording │ │ ├── IInterceptorRecorder.cs │ │ └── InterceptorRecorderResolver.cs │ └── UserCode │ │ ├── DateOnlyTimeOnly │ │ ├── DateOnlyInsert.cs │ │ ├── DateOnlyTimeOnlyUsage.cs │ │ ├── DateOnlyUsageWithDateFilter.cs │ │ └── DateOnlyUsageWithTimeFilter.cs │ │ └── DbStringUsage.cs ├── Dapper.AOT.Test.Integration │ ├── Dapper.AOT.Test.Integration.csproj │ ├── DateOnlyTimeOnlyTests.cs │ ├── DbStringTests.cs │ ├── Helpers │ │ └── CompilationExtensions.cs │ ├── README.md │ └── Setup │ │ ├── ExpressionParsingException.cs │ │ ├── IntegrationTestsBase.cs │ │ └── PostgresqlFixture.cs ├── Dapper.AOT.Test │ ├── Accessors │ │ ├── AccessorInterceptorTests.cs │ │ ├── AccessorTests.cs │ │ └── Data │ │ │ ├── Accessor.input.cs │ │ │ ├── Accessor.output.cs │ │ │ └── Accessor.output.netfx.cs │ ├── Dapper.AOT.Test.csproj │ ├── DapperApiTests.cs │ ├── GeneratorTestBase.cs │ ├── Helpers │ │ ├── TestFramework.cs │ │ └── XUnitSkippable.cs │ ├── InGeneration │ │ └── DbStringHelpersTests.cs │ ├── Integration │ │ ├── BatchPostgresql.cs │ │ ├── BatchTests.cs │ │ ├── BulkInsertIngegrationTests.cs │ │ ├── DateOnlyTimeOnlyTests.cs │ │ ├── DynamicTests.cs │ │ ├── ManualGridReaderTests.cs │ │ ├── MsSqlFixture.cs │ │ ├── PostgresqlFixture.cs │ │ ├── QueryTests.cs │ │ └── SqlClientFixture.cs │ ├── InterceptorTests.cs │ ├── Interceptors │ │ ├── BaseCommandFactory.input.cs │ │ ├── BaseCommandFactory.output.cs │ │ ├── BaseCommandFactory.output.netfx.cs │ │ ├── BaseCommandFactory.output.netfx.txt │ │ ├── BaseCommandFactory.output.txt │ │ ├── BatchSize.input.cs │ │ ├── BatchSize.output.cs │ │ ├── BatchSize.output.netfx.cs │ │ ├── BatchSize.output.netfx.txt │ │ ├── BatchSize.output.txt │ │ ├── Blame.input.cs │ │ ├── Blame.output.cs │ │ ├── Blame.output.netfx.cs │ │ ├── Blame.output.netfx.txt │ │ ├── Blame.output.txt │ │ ├── CacheCommand.input.cs │ │ ├── CacheCommand.output.cs │ │ ├── CacheCommand.output.netfx.cs │ │ ├── CacheCommand.output.netfx.txt │ │ ├── CacheCommand.output.txt │ │ ├── Cancellation.input.cs │ │ ├── Cancellation.output.cs │ │ ├── Cancellation.output.netfx.cs │ │ ├── Cancellation.output.netfx.txt │ │ ├── Cancellation.output.txt │ │ ├── ColumnAttribute.input.cs │ │ ├── ColumnAttribute.output.cs │ │ ├── ColumnAttribute.output.netfx.cs │ │ ├── ColumnAttribute.output.netfx.txt │ │ ├── ColumnAttribute.output.txt │ │ ├── CommandProperties.input.cs │ │ ├── CommandProperties.output.cs │ │ ├── CommandProperties.output.netfx.cs │ │ ├── CommandProperties.output.netfx.txt │ │ ├── CommandProperties.output.txt │ │ ├── ComplexGenerics.input.cs │ │ ├── DateOnly.net6.input.cs │ │ ├── DateOnly.net6.output.cs │ │ ├── DateOnly.net6.output.netfx.cs │ │ ├── DateOnly.net6.output.netfx.txt │ │ ├── DateOnly.net6.output.txt │ │ ├── DbString.input.cs │ │ ├── DbString.output.cs │ │ ├── DbString.output.netfx.cs │ │ ├── DbString.output.netfx.txt │ │ ├── DbString.output.txt │ │ ├── DbValueUsage.input.cs │ │ ├── DbValueUsage.output.cs │ │ ├── DbValueUsage.output.netfx.cs │ │ ├── DbValueUsage.output.netfx.txt │ │ ├── DbValueUsage.output.txt │ │ ├── DynamicParameters.input.cs │ │ ├── EnumerableExtensions.input.cs │ │ ├── EnumerableExtensions.output.cs │ │ ├── EnumerableExtensions.output.netfx.cs │ │ ├── EnumerableExtensions.output.netfx.txt │ │ ├── EnumerableExtensions.output.txt │ │ ├── Execute.input.cs │ │ ├── Execute.output.cs │ │ ├── Execute.output.netfx.cs │ │ ├── Execute.output.netfx.txt │ │ ├── Execute.output.txt │ │ ├── ExecuteBatch.input.cs │ │ ├── ExecuteBatch.output.cs │ │ ├── ExecuteBatch.output.netfx.cs │ │ ├── ExecuteBatch.output.netfx.txt │ │ ├── ExecuteBatch.output.txt │ │ ├── ExecuteNotEnabled.input.cs │ │ ├── ExecuteScalar.input.cs │ │ ├── ExecuteScalar.output.cs │ │ ├── ExecuteScalar.output.netfx.cs │ │ ├── ExecuteScalar.output.netfx.txt │ │ ├── ExecuteScalar.output.txt │ │ ├── GetRowParser.input.cs │ │ ├── GetRowParser.output.cs │ │ ├── GetRowParser.output.netfx.cs │ │ ├── GetRowParser.output.netfx.txt │ │ ├── GetRowParser.output.txt │ │ ├── GlobalFetchSize.input.cs │ │ ├── GlobalFetchSize.output.cs │ │ ├── GlobalFetchSize.output.netfx.cs │ │ ├── GlobalFetchSize.output.netfx.txt │ │ ├── GlobalFetchSize.output.txt │ │ ├── IncludeSqlSource.input.cs │ │ ├── IncludeSqlSource.output.cs │ │ ├── IncludeSqlSource.output.netfx.cs │ │ ├── IncludeSqlSource.output.netfx.txt │ │ ├── IncludeSqlSource.output.txt │ │ ├── InheritedMembers.input.cs │ │ ├── InheritedMembers.output.cs │ │ ├── InheritedMembers.output.netfx.cs │ │ ├── InheritedMembers.output.netfx.txt │ │ ├── InheritedMembers.output.txt │ │ ├── MappedSqlDetection.input.cs │ │ ├── MappedSqlDetection.output.cs │ │ ├── MappedSqlDetection.output.netfx.cs │ │ ├── MappedSqlDetection.output.netfx.txt │ │ ├── MappedSqlDetection.output.txt │ │ ├── MiscDiagnostics.input.cs │ │ ├── MiscDiagnostics.output.cs │ │ ├── MiscDiagnostics.output.netfx.cs │ │ ├── MiscDiagnostics.output.netfx.txt │ │ ├── MiscDiagnostics.output.txt │ │ ├── NoDapperUsage.input.cs │ │ ├── NonConstant.input.cs │ │ ├── NonConstant.output.cs │ │ ├── NonConstant.output.netfx.cs │ │ ├── NonConstant.output.netfx.txt │ │ ├── NonConstant.output.txt │ │ ├── NonFactoryMethod.input.cs │ │ ├── NonFactoryMethod.output.cs │ │ ├── NonFactoryMethod.output.netfx.cs │ │ ├── NonFactoryMethod.output.netfx.txt │ │ ├── NonFactoryMethod.output.txt │ │ ├── OmitAttribute.input.cs │ │ ├── OmitAttribute.output.cs │ │ ├── OmitAttribute.output.netfx.cs │ │ ├── OmitAttribute.output.netfx.txt │ │ ├── OmitAttribute.output.txt │ │ ├── Query.input.cs │ │ ├── Query.output.cs │ │ ├── Query.output.netfx.cs │ │ ├── Query.output.netfx.txt │ │ ├── Query.output.txt │ │ ├── QueryCustomConstructionWithConstructor.input.cs │ │ ├── QueryCustomConstructionWithConstructor.output.cs │ │ ├── QueryCustomConstructionWithConstructor.output.netfx.cs │ │ ├── QueryCustomConstructionWithConstructor.output.netfx.txt │ │ ├── QueryCustomConstructionWithConstructor.output.txt │ │ ├── QueryCustomConstructionWithFactoryMethod.input.cs │ │ ├── QueryCustomConstructionWithFactoryMethod.output.cs │ │ ├── QueryCustomConstructionWithFactoryMethod.output.netfx.cs │ │ ├── QueryCustomConstructionWithFactoryMethod.output.netfx.txt │ │ ├── QueryCustomConstructionWithFactoryMethod.output.txt │ │ ├── QueryDetection.input.cs │ │ ├── QueryDetection.output.cs │ │ ├── QueryDetection.output.netfx.cs │ │ ├── QueryDetection.output.netfx.txt │ │ ├── QueryDetection.output.txt │ │ ├── QueryMultiType.input.cs │ │ ├── QueryMultiple.input.cs │ │ ├── QueryNonGeneric.input.cs │ │ ├── QueryNonGeneric.output.cs │ │ ├── QueryNonGeneric.output.netfx.cs │ │ ├── QueryNonGeneric.output.netfx.txt │ │ ├── QueryNonGeneric.output.txt │ │ ├── QueryPrimitive.input.cs │ │ ├── QueryPrimitive.output.cs │ │ ├── QueryPrimitive.output.netfx.cs │ │ ├── QueryPrimitive.output.netfx.txt │ │ ├── QueryPrimitive.output.txt │ │ ├── QueryStrictBind.input.cs │ │ ├── QueryStrictBind.output.cs │ │ ├── QueryStrictBind.output.netfx.cs │ │ ├── QueryStrictBind.output.netfx.txt │ │ ├── QueryStrictBind.output.txt │ │ ├── QueryUntyped.input.cs │ │ ├── QueryUntyped.output.cs │ │ ├── QueryUntyped.output.netfx.cs │ │ ├── QueryUntyped.output.netfx.txt │ │ ├── QueryUntyped.output.txt │ │ ├── RequiredProperties.input.cs │ │ ├── RequiredProperties.output.cs │ │ ├── RequiredProperties.output.netfx.cs │ │ ├── RequiredProperties.output.netfx.txt │ │ ├── RequiredProperties.output.txt │ │ ├── RowCountHint.input.cs │ │ ├── RowCountHint.output.cs │ │ ├── RowCountHint.output.netfx.cs │ │ ├── RowCountHint.output.netfx.txt │ │ ├── RowCountHint.output.txt │ │ ├── Single.input.cs │ │ ├── Single.output.cs │ │ ├── Single.output.netfx.cs │ │ ├── Single.output.netfx.txt │ │ ├── Single.output.txt │ │ ├── SqlDetection.input.cs │ │ ├── SqlDetection.output.cs │ │ ├── SqlDetection.output.netfx.cs │ │ ├── SqlDetection.output.netfx.txt │ │ ├── SqlDetection.output.txt │ │ ├── SqlParse.input.cs │ │ ├── SqlParse.output.cs │ │ ├── SqlParse.output.netfx.cs │ │ ├── SqlParse.output.netfx.txt │ │ ├── SqlParse.output.txt │ │ ├── Techempower.input.cs │ │ ├── Techempower.output.cs │ │ ├── Techempower.output.netfx.cs │ │ ├── Techempower.output.netfx.txt │ │ ├── Techempower.output.txt │ │ ├── TopLevelStatements.input.cs │ │ ├── TopLevelStatements.output.cs │ │ ├── TopLevelStatements.output.netfx.cs │ │ ├── TopLevelStatements.output.netfx.txt │ │ ├── TopLevelStatements.output.txt │ │ ├── TsqlTips.input.cs │ │ ├── TsqlTips.output.cs │ │ ├── TsqlTips.output.netfx.cs │ │ ├── TsqlTips.output.netfx.txt │ │ └── TsqlTips.output.txt │ ├── Internal │ │ └── Roslyn │ │ │ └── TypeSymbolExtensionTests.cs │ ├── SqlTests.cs │ ├── TSqlParserTests.cs │ ├── TestCommon │ │ ├── GeneratorWrapper.cs │ │ └── RoslynTestHelpers.cs │ └── Verifiers │ │ ├── DAP001.cs │ │ ├── DAP004.cs │ │ ├── DAP005.cs │ │ ├── DAP006.cs │ │ ├── DAP007.cs │ │ ├── DAP011.cs │ │ ├── DAP012.cs │ │ ├── DAP013.cs │ │ ├── DAP014.cs │ │ ├── DAP015.cs │ │ ├── DAP016.cs │ │ ├── DAP017.cs │ │ ├── DAP018.cs │ │ ├── DAP021.cs │ │ ├── DAP022.cs │ │ ├── DAP023.cs │ │ ├── DAP024.cs │ │ ├── DAP025.cs │ │ ├── DAP026.cs │ │ ├── DAP027.cs │ │ ├── DAP028.cs │ │ ├── DAP029.cs │ │ ├── DAP030.cs │ │ ├── DAP031.cs │ │ ├── DAP032.cs │ │ ├── DAP035.cs │ │ ├── DAP036.cs │ │ ├── DAP037.cs │ │ ├── DAP038.cs │ │ ├── DAP039.cs │ │ ├── DAP041.cs │ │ ├── DAP042.cs │ │ ├── DAP043.cs │ │ ├── DAP044.cs │ │ ├── DAP045.cs │ │ ├── DAP046.cs │ │ ├── DAP047.cs │ │ ├── DAP048.cs │ │ ├── DAP201.cs │ │ ├── DAP202.cs │ │ ├── DAP203.cs │ │ ├── DAP204.cs │ │ ├── DAP205.cs │ │ ├── DAP206.cs │ │ ├── DAP207.cs │ │ ├── DAP208.cs │ │ ├── DAP209.cs │ │ ├── DAP210.cs │ │ ├── DAP211.cs │ │ ├── DAP212.cs │ │ ├── DAP213.cs │ │ ├── DAP214.cs │ │ ├── DAP216.cs │ │ ├── DAP217.cs │ │ ├── DAP218.cs │ │ ├── DAP219.cs │ │ ├── DAP220.cs │ │ ├── DAP221.cs │ │ ├── DAP222.cs │ │ ├── DAP223.cs │ │ ├── DAP224.cs │ │ ├── DAP225.cs │ │ ├── DAP226.cs │ │ ├── DAP227.cs │ │ ├── DAP228.cs │ │ ├── DAP229.cs │ │ ├── DAP230.cs │ │ ├── DAP231.cs │ │ ├── DAP232.cs │ │ ├── DAP233.cs │ │ ├── DAP234.cs │ │ ├── DAP235.cs │ │ ├── DAP236.cs │ │ ├── DAP237.cs │ │ ├── DAP238.cs │ │ ├── DAP239.cs │ │ ├── DAP240.cs │ │ ├── DAP241.VB.cs │ │ ├── DAP241.cs │ │ ├── DAP242.VB.cs │ │ ├── DAP242.cs │ │ ├── DAP243.cs │ │ ├── DAP244.cs │ │ ├── SqlDetection.cs │ │ ├── SqlSyntaxDetection.cs │ │ └── Verifier.cs ├── UsageBenchmark │ ├── BatchInsertBenchmarks.cs │ ├── BatchInsertBenchmarks.txt │ ├── ListIterationBenchmarks.cs │ ├── ListIterationBenchmarks.txt │ ├── Program.cs │ ├── QueryBenchmarks.cs │ ├── QueryBenchmarks.txt │ ├── Shared.cs │ └── UsageBenchmark.csproj ├── UsageLinker │ ├── Product.cs │ ├── Program.cs │ └── UsageLinker.csproj └── UsageVanilla │ └── UsageVanilla.csproj └── version.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/analyzer-suggestion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/.github/ISSUE_TEMPLATE/analyzer-suggestion.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/dotnet-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/.github/workflows/dotnet-integration.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/.gitignore -------------------------------------------------------------------------------- /Build.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/Build.csproj -------------------------------------------------------------------------------- /Dapper.AOT.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/Dapper.AOT.sln -------------------------------------------------------------------------------- /Dapper.AOT.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/Dapper.AOT.snk -------------------------------------------------------------------------------- /Dapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/Dapper.png -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/README.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | aot.dapperlib.dev -------------------------------------------------------------------------------- /docs/bulkcopy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/bulkcopy.md -------------------------------------------------------------------------------- /docs/docs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/docs.csproj -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/generatedcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/generatedcode.md -------------------------------------------------------------------------------- /docs/gettingstarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/gettingstarted.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/rules/DAP000.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP000.md -------------------------------------------------------------------------------- /docs/rules/DAP001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP001.md -------------------------------------------------------------------------------- /docs/rules/DAP004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP004.md -------------------------------------------------------------------------------- /docs/rules/DAP005.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP005.md -------------------------------------------------------------------------------- /docs/rules/DAP006.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP006.md -------------------------------------------------------------------------------- /docs/rules/DAP007.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP007.md -------------------------------------------------------------------------------- /docs/rules/DAP009.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP009.md -------------------------------------------------------------------------------- /docs/rules/DAP011.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP011.md -------------------------------------------------------------------------------- /docs/rules/DAP012.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP012.md -------------------------------------------------------------------------------- /docs/rules/DAP013.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP013.md -------------------------------------------------------------------------------- /docs/rules/DAP014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP014.md -------------------------------------------------------------------------------- /docs/rules/DAP015.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP015.md -------------------------------------------------------------------------------- /docs/rules/DAP016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP016.md -------------------------------------------------------------------------------- /docs/rules/DAP017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP017.md -------------------------------------------------------------------------------- /docs/rules/DAP018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP018.md -------------------------------------------------------------------------------- /docs/rules/DAP019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP019.md -------------------------------------------------------------------------------- /docs/rules/DAP021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP021.md -------------------------------------------------------------------------------- /docs/rules/DAP022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP022.md -------------------------------------------------------------------------------- /docs/rules/DAP023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP023.md -------------------------------------------------------------------------------- /docs/rules/DAP024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP024.md -------------------------------------------------------------------------------- /docs/rules/DAP025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP025.md -------------------------------------------------------------------------------- /docs/rules/DAP026.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP026.md -------------------------------------------------------------------------------- /docs/rules/DAP027.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP027.md -------------------------------------------------------------------------------- /docs/rules/DAP028.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP028.md -------------------------------------------------------------------------------- /docs/rules/DAP029.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP029.md -------------------------------------------------------------------------------- /docs/rules/DAP030.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP030.md -------------------------------------------------------------------------------- /docs/rules/DAP031.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP031.md -------------------------------------------------------------------------------- /docs/rules/DAP032.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP032.md -------------------------------------------------------------------------------- /docs/rules/DAP033.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP033.md -------------------------------------------------------------------------------- /docs/rules/DAP034.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP034.md -------------------------------------------------------------------------------- /docs/rules/DAP035.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP035.md -------------------------------------------------------------------------------- /docs/rules/DAP036.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP036.md -------------------------------------------------------------------------------- /docs/rules/DAP037.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP037.md -------------------------------------------------------------------------------- /docs/rules/DAP038.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP038.md -------------------------------------------------------------------------------- /docs/rules/DAP039.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP039.md -------------------------------------------------------------------------------- /docs/rules/DAP041.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP041.md -------------------------------------------------------------------------------- /docs/rules/DAP042.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP042.md -------------------------------------------------------------------------------- /docs/rules/DAP043.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP043.md -------------------------------------------------------------------------------- /docs/rules/DAP044.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP044.md -------------------------------------------------------------------------------- /docs/rules/DAP045.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP045.md -------------------------------------------------------------------------------- /docs/rules/DAP046.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP046.md -------------------------------------------------------------------------------- /docs/rules/DAP047.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP047.md -------------------------------------------------------------------------------- /docs/rules/DAP048.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP048.md -------------------------------------------------------------------------------- /docs/rules/DAP049.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP049.md -------------------------------------------------------------------------------- /docs/rules/DAP200.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP200.md -------------------------------------------------------------------------------- /docs/rules/DAP201.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP201.md -------------------------------------------------------------------------------- /docs/rules/DAP202.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP202.md -------------------------------------------------------------------------------- /docs/rules/DAP203.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP203.md -------------------------------------------------------------------------------- /docs/rules/DAP204.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP204.md -------------------------------------------------------------------------------- /docs/rules/DAP205.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP205.md -------------------------------------------------------------------------------- /docs/rules/DAP206.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP206.md -------------------------------------------------------------------------------- /docs/rules/DAP207.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP207.md -------------------------------------------------------------------------------- /docs/rules/DAP208.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP208.md -------------------------------------------------------------------------------- /docs/rules/DAP209.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP209.md -------------------------------------------------------------------------------- /docs/rules/DAP210.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP210.md -------------------------------------------------------------------------------- /docs/rules/DAP211.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP211.md -------------------------------------------------------------------------------- /docs/rules/DAP212.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP212.md -------------------------------------------------------------------------------- /docs/rules/DAP213.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP213.md -------------------------------------------------------------------------------- /docs/rules/DAP214.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP214.md -------------------------------------------------------------------------------- /docs/rules/DAP215.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP215.md -------------------------------------------------------------------------------- /docs/rules/DAP216.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP216.md -------------------------------------------------------------------------------- /docs/rules/DAP217.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP217.md -------------------------------------------------------------------------------- /docs/rules/DAP218.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP218.md -------------------------------------------------------------------------------- /docs/rules/DAP219.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP219.md -------------------------------------------------------------------------------- /docs/rules/DAP220.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP220.md -------------------------------------------------------------------------------- /docs/rules/DAP221.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP221.md -------------------------------------------------------------------------------- /docs/rules/DAP222.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP222.md -------------------------------------------------------------------------------- /docs/rules/DAP223.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP223.md -------------------------------------------------------------------------------- /docs/rules/DAP224.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP224.md -------------------------------------------------------------------------------- /docs/rules/DAP225.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP225.md -------------------------------------------------------------------------------- /docs/rules/DAP226.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP226.md -------------------------------------------------------------------------------- /docs/rules/DAP227.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP227.md -------------------------------------------------------------------------------- /docs/rules/DAP228.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP228.md -------------------------------------------------------------------------------- /docs/rules/DAP229.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP229.md -------------------------------------------------------------------------------- /docs/rules/DAP230.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP230.md -------------------------------------------------------------------------------- /docs/rules/DAP231.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP231.md -------------------------------------------------------------------------------- /docs/rules/DAP232.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP232.md -------------------------------------------------------------------------------- /docs/rules/DAP233.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP233.md -------------------------------------------------------------------------------- /docs/rules/DAP234.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP234.md -------------------------------------------------------------------------------- /docs/rules/DAP235.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP235.md -------------------------------------------------------------------------------- /docs/rules/DAP236.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP236.md -------------------------------------------------------------------------------- /docs/rules/DAP237.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP237.md -------------------------------------------------------------------------------- /docs/rules/DAP238.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP238.md -------------------------------------------------------------------------------- /docs/rules/DAP239.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP239.md -------------------------------------------------------------------------------- /docs/rules/DAP240.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP240.md -------------------------------------------------------------------------------- /docs/rules/DAP241.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP241.md -------------------------------------------------------------------------------- /docs/rules/DAP242.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP242.md -------------------------------------------------------------------------------- /docs/rules/DAP243.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP243.md -------------------------------------------------------------------------------- /docs/rules/DAP244.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP244.md -------------------------------------------------------------------------------- /docs/rules/DAP245.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP245.md -------------------------------------------------------------------------------- /docs/rules/DAP999.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/rules/DAP999.md -------------------------------------------------------------------------------- /docs/sqlsyntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/docs/sqlsyntax.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/global.json -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/nuget.config -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/AotGridReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/AotGridReader.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/CodeAnalysis/Abstractions/InterceptorGeneratorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/CodeAnalysis/Abstractions/InterceptorGeneratorBase.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/CodeAnalysis/DapperAnalyzer.Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/CodeAnalysis/DapperAnalyzer.Diagnostics.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/CodeAnalysis/DapperAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/CodeAnalysis/DapperAnalyzer.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/CodeAnalysis/DapperCodeFixes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/CodeAnalysis/DapperCodeFixes.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/CodeAnalysis/DapperInterceptorGenerator.Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/CodeAnalysis/DapperInterceptorGenerator.Diagnostics.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/CodeAnalysis/DapperInterceptorGenerator.Multi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/CodeAnalysis/DapperInterceptorGenerator.Multi.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/CodeAnalysis/DapperInterceptorGenerator.Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/CodeAnalysis/DapperInterceptorGenerator.Single.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/CodeAnalysis/DapperInterceptorGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/CodeAnalysis/DapperInterceptorGenerator.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/CodeAnalysis/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/CodeAnalysis/Diagnostics.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/CodeAnalysis/Extensions/IncludedGenerationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/CodeAnalysis/Extensions/IncludedGenerationExtensions.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/CodeAnalysis/GeneratorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/CodeAnalysis/GeneratorContext.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/CodeAnalysis/GlobalOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/CodeAnalysis/GlobalOptions.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/CodeAnalysis/ParseState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/CodeAnalysis/ParseState.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/CodeAnalysis/TypeAccessorInterceptorGenerator.Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/CodeAnalysis/TypeAccessorInterceptorGenerator.Diagnostics.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/CodeAnalysis/TypeAccessorInterceptorGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/CodeAnalysis/TypeAccessorInterceptorGenerator.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/CodeAnalysis/Writers/PreGeneratedCodeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/CodeAnalysis/Writers/PreGeneratedCodeWriter.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Dapper.AOT.Analyzers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Dapper.AOT.Analyzers.csproj -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/InGeneration/DapperHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/InGeneration/DapperHelpers.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/InGeneration/InterceptsLocationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/InGeneration/InterceptsLocationAttribute.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/IncludedGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/IncludedGeneration.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Internal/AdditionalCommandState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Internal/AdditionalCommandState.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Internal/CodeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Internal/CodeWriter.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Internal/CommandFactoryState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Internal/CommandFactoryState.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Internal/DiagnosticTSqlProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Internal/DiagnosticTSqlProcessor.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Internal/Inspection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Internal/Inspection.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Internal/MemberMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Internal/MemberMap.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Internal/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Internal/Resources.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Internal/Roslyn/LanguageHelper.CSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Internal/Roslyn/LanguageHelper.CSharp.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Internal/Roslyn/LanguageHelper.Null.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Internal/Roslyn/LanguageHelper.Null.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Internal/Roslyn/LanguageHelper.VisualBasic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Internal/Roslyn/LanguageHelper.VisualBasic.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Internal/Roslyn/LanguageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Internal/Roslyn/LanguageHelper.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Internal/Roslyn/LocationComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Internal/Roslyn/LocationComparer.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Internal/Roslyn/StringSyntaxKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Internal/Roslyn/StringSyntaxKind.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Internal/Roslyn/TypeSymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Internal/Roslyn/TypeSymbolExtensions.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Internal/RowReaderState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Internal/RowReaderState.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Internal/Shims.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Internal/Shims.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Internal/SqlParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Internal/SqlParameter.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Internal/SqlTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Internal/SqlTools.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/Internal/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/Internal/Types.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/SqlAnalysis/SqlParseOutputFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/SqlAnalysis/SqlParseOutputFlags.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/SqlAnalysis/SqlProcessingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/SqlAnalysis/SqlProcessingContext.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/SqlAnalysis/SqlSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/SqlAnalysis/SqlSyntax.cs -------------------------------------------------------------------------------- /src/Dapper.AOT.Analyzers/SqlAnalysis/TSqlProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT.Analyzers/SqlAnalysis/TSqlProcessor.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/BatchSizeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/BatchSizeAttribute.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/BindTupleByNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/BindTupleByNameAttribute.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/CacheCommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/CacheCommandAttribute.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/CommandFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/CommandFactory.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/CommandFactoryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/CommandFactoryAttribute.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/CommandPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/CommandPropertyAttribute.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/CommandT.Batch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/CommandT.Batch.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/CommandT.Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/CommandT.Execute.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/CommandT.ExecuteScalar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/CommandT.ExecuteScalar.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/CommandT.Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/CommandT.Query.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/CommandT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/CommandT.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/Dapper.AOT.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/Dapper.AOT.csproj -------------------------------------------------------------------------------- /src/Dapper.AOT/DapperAotAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/DapperAotAttribute.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/DapperAotExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/DapperAotExtensions.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/DbValueAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/DbValueAttribute.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/ICommand.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/IncludeLocationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/IncludeLocationAttribute.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/Internal/AsyncCommandState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/Internal/AsyncCommandState.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/Internal/AsyncQueryState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/Internal/AsyncQueryState.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/Internal/CollectorT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/Internal/CollectorT.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/Internal/CommandUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/Internal/CommandUtils.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/Internal/CompiledRegex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/Internal/CompiledRegex.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/Internal/DynamicRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/Internal/DynamicRecord.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/Internal/NullableRowFactoryT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/Internal/NullableRowFactoryT.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/Internal/OneRowFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/Internal/OneRowFlags.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/Internal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/Internal/README.md -------------------------------------------------------------------------------- /src/Dapper.AOT/Internal/StringHashing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/Internal/StringHashing.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/Internal/SyncCommandState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/Internal/SyncCommandState.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/Internal/SyncQueryState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/Internal/SyncQueryState.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/QueryColumnsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/QueryColumnsAttribute.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/RowCountAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/RowCountAttribute.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/RowCountHintAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/RowCountHintAttribute.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/RowFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/RowFactory.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/SqlAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/SqlAttribute.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/SqlSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/SqlSyntax.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/SqlSyntaxAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/SqlSyntaxAttribute.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/StrictTypesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/StrictTypesAttribute.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/TypeAccessor.AccessorDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/TypeAccessor.AccessorDataReader.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/TypeAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/TypeAccessor.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/TypeHandlerT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/TypeHandlerT.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/UnifiedCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/UnifiedCommand.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/UseColumnAttributeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/UseColumnAttributeAttribute.cs -------------------------------------------------------------------------------- /src/Dapper.AOT/WrappedDbDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.AOT/WrappedDbDataReader.cs -------------------------------------------------------------------------------- /src/Dapper.Advisor/Dapper.Advisor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.Advisor/Dapper.Advisor.csproj -------------------------------------------------------------------------------- /src/Dapper.Advisor/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/src/Dapper.Advisor/readme.md -------------------------------------------------------------------------------- /startvs.cmd: -------------------------------------------------------------------------------- 1 | @devenv Dapper.AOT.sln -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration.Executables/Dapper.AOT.Test.Integration.Executables.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration.Executables/Dapper.AOT.Test.Integration.Executables.csproj -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration.Executables/ExceptedCodeInterceptorRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration.Executables/ExceptedCodeInterceptorRecorder.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration.Executables/IExecutable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration.Executables/IExecutable.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration.Executables/Models/DateOnlyTimeOnlyPoco.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration.Executables/Models/DateOnlyTimeOnlyPoco.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration.Executables/Models/DbStringPoco.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration.Executables/Models/DbStringPoco.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration.Executables/Recording/IInterceptorRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration.Executables/Recording/IInterceptorRecorder.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration.Executables/Recording/InterceptorRecorderResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration.Executables/Recording/InterceptorRecorderResolver.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration.Executables/UserCode/DateOnlyTimeOnly/DateOnlyInsert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration.Executables/UserCode/DateOnlyTimeOnly/DateOnlyInsert.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration.Executables/UserCode/DateOnlyTimeOnly/DateOnlyTimeOnlyUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration.Executables/UserCode/DateOnlyTimeOnly/DateOnlyTimeOnlyUsage.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration.Executables/UserCode/DateOnlyTimeOnly/DateOnlyUsageWithDateFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration.Executables/UserCode/DateOnlyTimeOnly/DateOnlyUsageWithDateFilter.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration.Executables/UserCode/DateOnlyTimeOnly/DateOnlyUsageWithTimeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration.Executables/UserCode/DateOnlyTimeOnly/DateOnlyUsageWithTimeFilter.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration.Executables/UserCode/DbStringUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration.Executables/UserCode/DbStringUsage.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration/Dapper.AOT.Test.Integration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration/Dapper.AOT.Test.Integration.csproj -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration/DateOnlyTimeOnlyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration/DateOnlyTimeOnlyTests.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration/DbStringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration/DbStringTests.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration/Helpers/CompilationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration/Helpers/CompilationExtensions.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration/README.md -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration/Setup/ExpressionParsingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration/Setup/ExpressionParsingException.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration/Setup/IntegrationTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration/Setup/IntegrationTestsBase.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test.Integration/Setup/PostgresqlFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test.Integration/Setup/PostgresqlFixture.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Accessors/AccessorInterceptorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Accessors/AccessorInterceptorTests.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Accessors/AccessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Accessors/AccessorTests.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Accessors/Data/Accessor.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Accessors/Data/Accessor.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Accessors/Data/Accessor.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Accessors/Data/Accessor.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Accessors/Data/Accessor.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Accessors/Data/Accessor.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Dapper.AOT.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Dapper.AOT.Test.csproj -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/DapperApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/DapperApiTests.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/GeneratorTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/GeneratorTestBase.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Helpers/TestFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Helpers/TestFramework.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Helpers/XUnitSkippable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Helpers/XUnitSkippable.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/InGeneration/DbStringHelpersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/InGeneration/DbStringHelpersTests.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Integration/BatchPostgresql.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Integration/BatchPostgresql.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Integration/BatchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Integration/BatchTests.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Integration/BulkInsertIngegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Integration/BulkInsertIngegrationTests.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Integration/DateOnlyTimeOnlyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Integration/DateOnlyTimeOnlyTests.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Integration/DynamicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Integration/DynamicTests.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Integration/ManualGridReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Integration/ManualGridReaderTests.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Integration/MsSqlFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Integration/MsSqlFixture.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Integration/PostgresqlFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Integration/PostgresqlFixture.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Integration/QueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Integration/QueryTests.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Integration/SqlClientFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Integration/SqlClientFixture.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/InterceptorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/InterceptorTests.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/BaseCommandFactory.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/BaseCommandFactory.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/BaseCommandFactory.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/BaseCommandFactory.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/BaseCommandFactory.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/BaseCommandFactory.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/BaseCommandFactory.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/BaseCommandFactory.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/BaseCommandFactory.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/BaseCommandFactory.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/BatchSize.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/BatchSize.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/BatchSize.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/BatchSize.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/BatchSize.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/BatchSize.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/BatchSize.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/BatchSize.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/BatchSize.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/BatchSize.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Blame.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Blame.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Blame.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Blame.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Blame.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Blame.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Blame.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Blame.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Blame.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Blame.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/CacheCommand.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/CacheCommand.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/CacheCommand.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/CacheCommand.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/CacheCommand.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/CacheCommand.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/CacheCommand.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/CacheCommand.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/CacheCommand.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/CacheCommand.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Cancellation.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Cancellation.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Cancellation.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Cancellation.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Cancellation.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Cancellation.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Cancellation.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Cancellation.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Cancellation.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Cancellation.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/ColumnAttribute.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/ColumnAttribute.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/ColumnAttribute.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/ColumnAttribute.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/ColumnAttribute.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/ColumnAttribute.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/ColumnAttribute.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/ColumnAttribute.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/ColumnAttribute.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/ColumnAttribute.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/CommandProperties.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/CommandProperties.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/CommandProperties.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/CommandProperties.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/CommandProperties.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/CommandProperties.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/CommandProperties.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/CommandProperties.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/CommandProperties.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/CommandProperties.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/ComplexGenerics.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/ComplexGenerics.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/DateOnly.net6.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/DateOnly.net6.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/DateOnly.net6.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/DateOnly.net6.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/DateOnly.net6.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/DateOnly.net6.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/DateOnly.net6.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/DateOnly.net6.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/DateOnly.net6.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/DateOnly.net6.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/DbString.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/DbString.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/DbString.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/DbString.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/DbString.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/DbString.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/DbString.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/DbString.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/DbString.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/DbString.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/DbValueUsage.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/DbValueUsage.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/DbValueUsage.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/DbValueUsage.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/DbValueUsage.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/DbValueUsage.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/DbValueUsage.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/DbValueUsage.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/DbValueUsage.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/DbValueUsage.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/DynamicParameters.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/DynamicParameters.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/EnumerableExtensions.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/EnumerableExtensions.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/EnumerableExtensions.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/EnumerableExtensions.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/EnumerableExtensions.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/EnumerableExtensions.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/EnumerableExtensions.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/EnumerableExtensions.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/EnumerableExtensions.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/EnumerableExtensions.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Execute.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Execute.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Execute.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Execute.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Execute.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Execute.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Execute.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Execute.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Execute.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Execute.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/ExecuteBatch.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/ExecuteBatch.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/ExecuteBatch.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/ExecuteBatch.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/ExecuteBatch.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/ExecuteBatch.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/ExecuteBatch.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/ExecuteBatch.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/ExecuteBatch.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/ExecuteBatch.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/ExecuteNotEnabled.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/ExecuteNotEnabled.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/ExecuteScalar.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/ExecuteScalar.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/ExecuteScalar.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/ExecuteScalar.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/ExecuteScalar.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/ExecuteScalar.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/ExecuteScalar.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/ExecuteScalar.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/ExecuteScalar.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/ExecuteScalar.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/GetRowParser.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/GetRowParser.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/GetRowParser.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/GetRowParser.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/GetRowParser.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/GetRowParser.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/GetRowParser.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/GetRowParser.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/GetRowParser.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/GetRowParser.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/GlobalFetchSize.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/GlobalFetchSize.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/GlobalFetchSize.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/GlobalFetchSize.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/GlobalFetchSize.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/GlobalFetchSize.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/GlobalFetchSize.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/GlobalFetchSize.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/GlobalFetchSize.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/GlobalFetchSize.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/IncludeSqlSource.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/IncludeSqlSource.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/IncludeSqlSource.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/IncludeSqlSource.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/IncludeSqlSource.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/IncludeSqlSource.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/IncludeSqlSource.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/IncludeSqlSource.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/IncludeSqlSource.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/IncludeSqlSource.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/InheritedMembers.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/InheritedMembers.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/InheritedMembers.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/InheritedMembers.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/InheritedMembers.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/InheritedMembers.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/InheritedMembers.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/InheritedMembers.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/InheritedMembers.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/InheritedMembers.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/MappedSqlDetection.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/MappedSqlDetection.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/MappedSqlDetection.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/MappedSqlDetection.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/MappedSqlDetection.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/MappedSqlDetection.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/MappedSqlDetection.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/MappedSqlDetection.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/MappedSqlDetection.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/MappedSqlDetection.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/MiscDiagnostics.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/MiscDiagnostics.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/MiscDiagnostics.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/MiscDiagnostics.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/MiscDiagnostics.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/MiscDiagnostics.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/MiscDiagnostics.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/MiscDiagnostics.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/MiscDiagnostics.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/MiscDiagnostics.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/NoDapperUsage.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/NoDapperUsage.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/NonConstant.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/NonConstant.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/NonConstant.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/NonConstant.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/NonConstant.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/NonConstant.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/NonConstant.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/NonConstant.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/NonConstant.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/NonConstant.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/NonFactoryMethod.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/NonFactoryMethod.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/NonFactoryMethod.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/NonFactoryMethod.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/NonFactoryMethod.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/NonFactoryMethod.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/NonFactoryMethod.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/NonFactoryMethod.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/NonFactoryMethod.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/NonFactoryMethod.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/OmitAttribute.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/OmitAttribute.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/OmitAttribute.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/OmitAttribute.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/OmitAttribute.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/OmitAttribute.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/OmitAttribute.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/OmitAttribute.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/OmitAttribute.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/OmitAttribute.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Query.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Query.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Query.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Query.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Query.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Query.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Query.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Query.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Query.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Query.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithConstructor.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithConstructor.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithConstructor.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithConstructor.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithConstructor.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithConstructor.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithConstructor.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithConstructor.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithConstructor.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithConstructor.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithFactoryMethod.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithFactoryMethod.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithFactoryMethod.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithFactoryMethod.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithFactoryMethod.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithFactoryMethod.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithFactoryMethod.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithFactoryMethod.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithFactoryMethod.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryCustomConstructionWithFactoryMethod.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryDetection.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryDetection.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryDetection.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryDetection.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryDetection.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryDetection.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryDetection.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryDetection.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryDetection.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryDetection.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryMultiType.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryMultiType.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryMultiple.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryMultiple.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryNonGeneric.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryNonGeneric.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryNonGeneric.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryNonGeneric.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryNonGeneric.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryNonGeneric.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryNonGeneric.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryNonGeneric.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryNonGeneric.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryNonGeneric.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryPrimitive.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryPrimitive.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryPrimitive.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryPrimitive.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryPrimitive.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryPrimitive.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryPrimitive.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryPrimitive.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryPrimitive.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryPrimitive.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryStrictBind.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryStrictBind.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryStrictBind.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryStrictBind.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryStrictBind.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryStrictBind.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryStrictBind.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryStrictBind.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryStrictBind.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryStrictBind.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryUntyped.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryUntyped.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryUntyped.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryUntyped.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryUntyped.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryUntyped.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryUntyped.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryUntyped.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/QueryUntyped.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/QueryUntyped.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/RequiredProperties.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/RequiredProperties.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/RequiredProperties.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/RequiredProperties.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/RequiredProperties.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/RequiredProperties.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/RequiredProperties.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/RequiredProperties.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/RequiredProperties.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/RequiredProperties.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/RowCountHint.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/RowCountHint.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/RowCountHint.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/RowCountHint.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/RowCountHint.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/RowCountHint.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/RowCountHint.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/RowCountHint.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/RowCountHint.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/RowCountHint.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Single.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Single.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Single.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Single.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Single.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Single.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Single.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Single.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Single.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Single.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/SqlDetection.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/SqlDetection.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/SqlDetection.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/SqlDetection.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/SqlDetection.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/SqlDetection.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/SqlDetection.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/SqlDetection.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/SqlDetection.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/SqlDetection.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/SqlParse.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/SqlParse.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/SqlParse.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/SqlParse.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/SqlParse.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/SqlParse.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/SqlParse.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/SqlParse.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/SqlParse.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/SqlParse.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Techempower.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Techempower.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Techempower.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Techempower.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Techempower.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Techempower.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Techempower.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Techempower.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/Techempower.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/Techempower.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/TopLevelStatements.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/TopLevelStatements.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/TopLevelStatements.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/TopLevelStatements.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/TopLevelStatements.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/TopLevelStatements.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/TopLevelStatements.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/TopLevelStatements.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/TopLevelStatements.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/TopLevelStatements.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/TsqlTips.input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/TsqlTips.input.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/TsqlTips.output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/TsqlTips.output.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/TsqlTips.output.netfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/TsqlTips.output.netfx.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/TsqlTips.output.netfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/TsqlTips.output.netfx.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Interceptors/TsqlTips.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Interceptors/TsqlTips.output.txt -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Internal/Roslyn/TypeSymbolExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Internal/Roslyn/TypeSymbolExtensionTests.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/SqlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/SqlTests.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/TSqlParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/TSqlParserTests.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/TestCommon/GeneratorWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/TestCommon/GeneratorWrapper.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/TestCommon/RoslynTestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/TestCommon/RoslynTestHelpers.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP001.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP001.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP004.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP004.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP005.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP005.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP006.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP006.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP007.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP007.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP011.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP011.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP012.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP012.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP013.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP013.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP014.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP014.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP015.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP015.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP016.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP016.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP017.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP017.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP018.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP018.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP021.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP021.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP022.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP022.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP023.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP023.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP024.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP024.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP025.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP025.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP026.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP026.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP027.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP027.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP028.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP028.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP029.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP029.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP030.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP030.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP031.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP031.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP032.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP032.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP035.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP035.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP036.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP036.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP037.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP037.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP038.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP038.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP039.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP039.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP041.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP041.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP042.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP042.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP043.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP043.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP044.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP044.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP045.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP045.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP046.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP046.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP047.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP047.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP048.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP048.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP201.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP201.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP202.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP202.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP203.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP203.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP204.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP204.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP205.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP205.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP206.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP206.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP207.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP207.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP208.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP208.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP209.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP209.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP210.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP210.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP211.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP211.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP212.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP212.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP213.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP213.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP214.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP214.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP216.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP216.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP217.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP217.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP218.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP218.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP219.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP219.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP220.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP220.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP221.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP221.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP222.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP222.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP223.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP223.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP224.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP224.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP225.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP225.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP226.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP226.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP227.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP227.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP228.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP228.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP229.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP229.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP230.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP230.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP231.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP231.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP232.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP232.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP233.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP233.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP234.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP234.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP235.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP235.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP236.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP236.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP237.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP237.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP238.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP238.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP239.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP239.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP240.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP240.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP241.VB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP241.VB.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP241.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP241.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP242.VB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP242.VB.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP242.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP242.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP243.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP243.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/DAP244.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/DAP244.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/SqlDetection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/SqlDetection.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/SqlSyntaxDetection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/SqlSyntaxDetection.cs -------------------------------------------------------------------------------- /test/Dapper.AOT.Test/Verifiers/Verifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/Dapper.AOT.Test/Verifiers/Verifier.cs -------------------------------------------------------------------------------- /test/UsageBenchmark/BatchInsertBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/UsageBenchmark/BatchInsertBenchmarks.cs -------------------------------------------------------------------------------- /test/UsageBenchmark/BatchInsertBenchmarks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/UsageBenchmark/BatchInsertBenchmarks.txt -------------------------------------------------------------------------------- /test/UsageBenchmark/ListIterationBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/UsageBenchmark/ListIterationBenchmarks.cs -------------------------------------------------------------------------------- /test/UsageBenchmark/ListIterationBenchmarks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/UsageBenchmark/ListIterationBenchmarks.txt -------------------------------------------------------------------------------- /test/UsageBenchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/UsageBenchmark/Program.cs -------------------------------------------------------------------------------- /test/UsageBenchmark/QueryBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/UsageBenchmark/QueryBenchmarks.cs -------------------------------------------------------------------------------- /test/UsageBenchmark/QueryBenchmarks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/UsageBenchmark/QueryBenchmarks.txt -------------------------------------------------------------------------------- /test/UsageBenchmark/Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/UsageBenchmark/Shared.cs -------------------------------------------------------------------------------- /test/UsageBenchmark/UsageBenchmark.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/UsageBenchmark/UsageBenchmark.csproj -------------------------------------------------------------------------------- /test/UsageLinker/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/UsageLinker/Product.cs -------------------------------------------------------------------------------- /test/UsageLinker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/UsageLinker/Program.cs -------------------------------------------------------------------------------- /test/UsageLinker/UsageLinker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/UsageLinker/UsageLinker.csproj -------------------------------------------------------------------------------- /test/UsageVanilla/UsageVanilla.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/test/UsageVanilla/UsageVanilla.csproj -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/DapperAOT/HEAD/version.json --------------------------------------------------------------------------------