├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── cla.yml │ └── main.yml ├── .gitignore ├── Build.csproj ├── Dapper.EntityFramework.StrongName └── Dapper.EntityFramework.StrongName.csproj ├── Dapper.EntityFramework ├── Dapper.EntityFramework.csproj ├── DbGeographyHandler.cs ├── DbGeometryHandler.cs ├── Handlers.cs ├── PublicAPI.Shipped.txt └── PublicAPI.Unshipped.txt ├── Dapper.ProviderTools ├── BulkCopy.cs ├── Dapper.ProviderTools.csproj ├── DbConnectionExtensions.cs ├── DbExceptionExtensions.cs ├── Internal │ └── DynamicBulkCopy.cs ├── PublicAPI.Shipped.txt └── PublicAPI.Unshipped.txt ├── Dapper.Rainbow ├── Dapper.Rainbow.csproj ├── Database.Async.cs ├── Database.cs ├── IgnorePropertyAttribute.cs ├── Snapshotter.cs ├── SqlCompactDatabase.cs └── readme.md ├── Dapper.SqlBuilder ├── Dapper.SqlBuilder.csproj ├── PublicAPI.Shipped.txt ├── PublicAPI.Unshipped.txt ├── Readme.md └── SqlBuilder.cs ├── Dapper.StrongName └── Dapper.StrongName.csproj ├── Dapper.png ├── Dapper.sln ├── Dapper.sln.DotSettings ├── Dapper.snk ├── Dapper ├── CommandDefinition.cs ├── CommandFlags.cs ├── CompiledRegex.cs ├── CustomPropertyTypeMap.cs ├── Dapper.csproj ├── DataTableHandler.cs ├── DbString.cs ├── DefaultTypeMap.cs ├── DynamicParameters.CachedOutputSetters.cs ├── DynamicParameters.ParamInfo.cs ├── DynamicParameters.cs ├── ExplicitConstructorAttribute.cs ├── Extensions.cs ├── FeatureSupport.cs ├── Global.cs ├── NRT.cs ├── Properties │ └── AssemblyInfo.cs ├── PublicAPI.Shipped.txt ├── PublicAPI.Unshipped.txt ├── PublicAPI │ ├── net461 │ │ ├── PublicAPI.Shipped.txt │ │ └── PublicAPI.Unshipped.txt │ ├── net8.0 │ │ ├── PublicAPI.Shipped.txt │ │ └── PublicAPI.Unshipped.txt │ └── netstandard2.0 │ │ ├── PublicAPI.Shipped.txt │ │ └── PublicAPI.Unshipped.txt ├── SimpleMemberMap.cs ├── SqlDataRecordHandler.cs ├── SqlDataRecordListTVPParameter.cs ├── SqlMapper.Async.cs ├── SqlMapper.CacheInfo.cs ├── SqlMapper.DapperRow.Descriptor.cs ├── SqlMapper.DapperRow.cs ├── SqlMapper.DapperRowMetaObject.cs ├── SqlMapper.DapperTable.cs ├── SqlMapper.DeserializerState.cs ├── SqlMapper.DontMap.cs ├── SqlMapper.GridReader.Async.cs ├── SqlMapper.GridReader.cs ├── SqlMapper.ICustomQueryParameter.cs ├── SqlMapper.IDataReader.cs ├── SqlMapper.IDynamicParameters.cs ├── SqlMapper.IMemberMap.cs ├── SqlMapper.IParameterCallbacks.cs ├── SqlMapper.IParameterLookup.cs ├── SqlMapper.ITypeHandler.cs ├── SqlMapper.ITypeMap.cs ├── SqlMapper.Identity.cs ├── SqlMapper.Link.cs ├── SqlMapper.LiteralToken.cs ├── SqlMapper.Settings.cs ├── SqlMapper.TypeDeserializerCache.cs ├── SqlMapper.TypeHandler.cs ├── SqlMapper.TypeHandlerCache.cs ├── SqlMapper.cs ├── TableValuedParameter.cs ├── TypeExtensions.cs ├── UdtTypeHandler.cs ├── WrappedDataReader.cs ├── WrappedReader.cs └── XmlHandlers.cs ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── License.txt ├── NonCLA.md ├── Readme.md ├── appveyor.yml ├── benchmarks ├── Dapper.Tests.Performance │ ├── Benchmarks.Belgrade.cs │ ├── Benchmarks.Dapper.cs │ ├── Benchmarks.Dashing.cs │ ├── Benchmarks.EntityFramework.cs │ ├── Benchmarks.EntityFrameworkCore.cs │ ├── Benchmarks.HandCoded.cs │ ├── Benchmarks.Linq2DB.cs │ ├── Benchmarks.Linq2Sql.cs │ ├── Benchmarks.Massive.cs │ ├── Benchmarks.Mighty.cs │ ├── Benchmarks.NHibernate.cs │ ├── Benchmarks.Norm.cs │ ├── Benchmarks.PetaPoco.cs │ ├── Benchmarks.RepoDB.cs │ ├── Benchmarks.ServiceStack.cs │ ├── Benchmarks.SqlMarshal.cs │ ├── Benchmarks.Susanoo.cs │ ├── Benchmarks.XPO.cs │ ├── Benchmarks.cs │ ├── Config.cs │ ├── Dapper.Tests.Performance.csproj │ ├── DapperCacheImpact.cs │ ├── Dashing │ │ ├── DashingConfiguration.cs │ │ └── Post.cs │ ├── EntityFramework │ │ └── EFContext.cs │ ├── EntityFrameworkCore │ │ └── EFCoreContext.cs │ ├── Helpers │ │ ├── ORMColum.cs │ │ └── ReturnColum.cs │ ├── LegacyTests.cs │ ├── Linq2DB │ │ ├── ConnectionStringSettings.cs │ │ ├── Linq2DBContext.cs │ │ └── Linq2DbSettings.cs │ ├── Linq2Sql │ │ ├── DataClasses.dbml │ │ ├── DataClasses.dbml.layout │ │ └── DataClasses.designer.cs │ ├── Massive │ │ └── Massive.cs │ ├── NHibernate │ │ ├── NHibernateHelper.cs │ │ ├── Post.hbm.xml │ │ └── hibernate.cfg.xml │ ├── PetaPoco │ │ └── PetaPoco.cs │ ├── Post.cs │ ├── Program.cs │ ├── SqlDataReaderHelper.cs │ ├── XPO │ │ └── Post.cs │ └── app.config └── Directory.Build.props ├── docs ├── _config.yml ├── dapper-sponsor.png ├── dapperplus.md ├── dapperplus.png ├── docs.csproj ├── index.md └── readme.md ├── global.json ├── nuget.config ├── signatures └── version1 │ └── cla.json ├── tests ├── Dapper.Tests │ ├── App.config │ ├── AsyncTests.cs │ ├── ConstructorTests.cs │ ├── Dapper.Tests.csproj │ ├── DataReaderTests.cs │ ├── DateTimeOnlyTests.cs │ ├── DecimalTests.cs │ ├── EnumTests.cs │ ├── Helpers │ │ ├── Attributes.cs │ │ ├── Common.cs │ │ ├── IsExternalInit.cs │ │ ├── SqlServerTypesLoader.cs │ │ ├── TransactedConnection.cs │ │ └── XunitSkippable.cs │ ├── LiteralTests.cs │ ├── MiscTests.cs │ ├── MultiMapTests.cs │ ├── NullTests.cs │ ├── ParameterTests.cs │ ├── ProcedureTests.cs │ ├── ProviderTests.cs │ ├── Providers │ │ ├── DuckDBTests.cs │ │ ├── EntityFrameworkTests.cs │ │ ├── FirebirdTests.cs │ │ ├── Linq2SqlTests.cs │ │ ├── MySQLTests.cs │ │ ├── OLDEBTests.cs │ │ ├── PostgresqlTests.cs │ │ ├── SnowflakeTests.cs │ │ └── SqliteTests.cs │ ├── QueryMultipleTests.cs │ ├── SharedTypes │ │ ├── Address.cs │ │ ├── Bar1.cs │ │ ├── Category.cs │ │ ├── Comment.cs │ │ ├── Dog.cs │ │ ├── Enums.cs │ │ ├── Foo1.cs │ │ ├── HazNameId.cs │ │ ├── Index.cs │ │ ├── Person.cs │ │ ├── Post.cs │ │ ├── Product.cs │ │ ├── ReviewBoard.cs │ │ ├── ShortEnum.cs │ │ ├── SomeType.cs │ │ └── User.cs │ ├── SingleRowTests.cs │ ├── SqlBuilderTests.cs │ ├── TestBase.cs │ ├── TransactionTests.cs │ ├── TupleTests.cs │ ├── TypeHandlerTests.cs │ ├── WrappedReaderTests.cs │ ├── XmlTests.cs │ └── xunit.runner.json ├── Directory.Build.props ├── Directory.Build.targets └── docker-compose.yml └── version.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/.gitignore -------------------------------------------------------------------------------- /Build.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Build.csproj -------------------------------------------------------------------------------- /Dapper.EntityFramework.StrongName/Dapper.EntityFramework.StrongName.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.EntityFramework.StrongName/Dapper.EntityFramework.StrongName.csproj -------------------------------------------------------------------------------- /Dapper.EntityFramework/Dapper.EntityFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.EntityFramework/Dapper.EntityFramework.csproj -------------------------------------------------------------------------------- /Dapper.EntityFramework/DbGeographyHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.EntityFramework/DbGeographyHandler.cs -------------------------------------------------------------------------------- /Dapper.EntityFramework/DbGeometryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.EntityFramework/DbGeometryHandler.cs -------------------------------------------------------------------------------- /Dapper.EntityFramework/Handlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.EntityFramework/Handlers.cs -------------------------------------------------------------------------------- /Dapper.EntityFramework/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.EntityFramework/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /Dapper.EntityFramework/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- 1 | #nullable enable -------------------------------------------------------------------------------- /Dapper.ProviderTools/BulkCopy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.ProviderTools/BulkCopy.cs -------------------------------------------------------------------------------- /Dapper.ProviderTools/Dapper.ProviderTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.ProviderTools/Dapper.ProviderTools.csproj -------------------------------------------------------------------------------- /Dapper.ProviderTools/DbConnectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.ProviderTools/DbConnectionExtensions.cs -------------------------------------------------------------------------------- /Dapper.ProviderTools/DbExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.ProviderTools/DbExceptionExtensions.cs -------------------------------------------------------------------------------- /Dapper.ProviderTools/Internal/DynamicBulkCopy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.ProviderTools/Internal/DynamicBulkCopy.cs -------------------------------------------------------------------------------- /Dapper.ProviderTools/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.ProviderTools/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /Dapper.ProviderTools/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- 1 | #nullable enable -------------------------------------------------------------------------------- /Dapper.Rainbow/Dapper.Rainbow.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.Rainbow/Dapper.Rainbow.csproj -------------------------------------------------------------------------------- /Dapper.Rainbow/Database.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.Rainbow/Database.Async.cs -------------------------------------------------------------------------------- /Dapper.Rainbow/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.Rainbow/Database.cs -------------------------------------------------------------------------------- /Dapper.Rainbow/IgnorePropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.Rainbow/IgnorePropertyAttribute.cs -------------------------------------------------------------------------------- /Dapper.Rainbow/Snapshotter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.Rainbow/Snapshotter.cs -------------------------------------------------------------------------------- /Dapper.Rainbow/SqlCompactDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.Rainbow/SqlCompactDatabase.cs -------------------------------------------------------------------------------- /Dapper.Rainbow/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.Rainbow/readme.md -------------------------------------------------------------------------------- /Dapper.SqlBuilder/Dapper.SqlBuilder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.SqlBuilder/Dapper.SqlBuilder.csproj -------------------------------------------------------------------------------- /Dapper.SqlBuilder/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.SqlBuilder/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /Dapper.SqlBuilder/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- 1 | #nullable enable -------------------------------------------------------------------------------- /Dapper.SqlBuilder/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.SqlBuilder/Readme.md -------------------------------------------------------------------------------- /Dapper.SqlBuilder/SqlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.SqlBuilder/SqlBuilder.cs -------------------------------------------------------------------------------- /Dapper.StrongName/Dapper.StrongName.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.StrongName/Dapper.StrongName.csproj -------------------------------------------------------------------------------- /Dapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.png -------------------------------------------------------------------------------- /Dapper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.sln -------------------------------------------------------------------------------- /Dapper.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.sln.DotSettings -------------------------------------------------------------------------------- /Dapper.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper.snk -------------------------------------------------------------------------------- /Dapper/CommandDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/CommandDefinition.cs -------------------------------------------------------------------------------- /Dapper/CommandFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/CommandFlags.cs -------------------------------------------------------------------------------- /Dapper/CompiledRegex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/CompiledRegex.cs -------------------------------------------------------------------------------- /Dapper/CustomPropertyTypeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/CustomPropertyTypeMap.cs -------------------------------------------------------------------------------- /Dapper/Dapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/Dapper.csproj -------------------------------------------------------------------------------- /Dapper/DataTableHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/DataTableHandler.cs -------------------------------------------------------------------------------- /Dapper/DbString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/DbString.cs -------------------------------------------------------------------------------- /Dapper/DefaultTypeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/DefaultTypeMap.cs -------------------------------------------------------------------------------- /Dapper/DynamicParameters.CachedOutputSetters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/DynamicParameters.CachedOutputSetters.cs -------------------------------------------------------------------------------- /Dapper/DynamicParameters.ParamInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/DynamicParameters.ParamInfo.cs -------------------------------------------------------------------------------- /Dapper/DynamicParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/DynamicParameters.cs -------------------------------------------------------------------------------- /Dapper/ExplicitConstructorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/ExplicitConstructorAttribute.cs -------------------------------------------------------------------------------- /Dapper/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/Extensions.cs -------------------------------------------------------------------------------- /Dapper/FeatureSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/FeatureSupport.cs -------------------------------------------------------------------------------- /Dapper/Global.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | #if !STRONG_NAME 3 | [assembly: InternalsVisibleTo("Dapper.Tests")] 4 | #endif 5 | -------------------------------------------------------------------------------- /Dapper/NRT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/NRT.cs -------------------------------------------------------------------------------- /Dapper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Dapper/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /Dapper/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- 1 | #nullable enable -------------------------------------------------------------------------------- /Dapper/PublicAPI/net461/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- 1 | #nullable enable -------------------------------------------------------------------------------- /Dapper/PublicAPI/net461/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- 1 | #nullable enable -------------------------------------------------------------------------------- /Dapper/PublicAPI/net8.0/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- 1 | #nullable enable 2 | -------------------------------------------------------------------------------- /Dapper/PublicAPI/net8.0/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- 1 | #nullable enable -------------------------------------------------------------------------------- /Dapper/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- 1 | #nullable enable -------------------------------------------------------------------------------- /Dapper/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- 1 | #nullable enable -------------------------------------------------------------------------------- /Dapper/SimpleMemberMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SimpleMemberMap.cs -------------------------------------------------------------------------------- /Dapper/SqlDataRecordHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlDataRecordHandler.cs -------------------------------------------------------------------------------- /Dapper/SqlDataRecordListTVPParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlDataRecordListTVPParameter.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.Async.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.CacheInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.CacheInfo.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.DapperRow.Descriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.DapperRow.Descriptor.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.DapperRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.DapperRow.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.DapperRowMetaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.DapperRowMetaObject.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.DapperTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.DapperTable.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.DeserializerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.DeserializerState.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.DontMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.DontMap.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.GridReader.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.GridReader.Async.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.GridReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.GridReader.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.ICustomQueryParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.ICustomQueryParameter.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.IDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.IDataReader.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.IDynamicParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.IDynamicParameters.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.IMemberMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.IMemberMap.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.IParameterCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.IParameterCallbacks.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.IParameterLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.IParameterLookup.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.ITypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.ITypeHandler.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.ITypeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.ITypeMap.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.Identity.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.Link.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.LiteralToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.LiteralToken.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.Settings.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.TypeDeserializerCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.TypeDeserializerCache.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.TypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.TypeHandler.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.TypeHandlerCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.TypeHandlerCache.cs -------------------------------------------------------------------------------- /Dapper/SqlMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/SqlMapper.cs -------------------------------------------------------------------------------- /Dapper/TableValuedParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/TableValuedParameter.cs -------------------------------------------------------------------------------- /Dapper/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/TypeExtensions.cs -------------------------------------------------------------------------------- /Dapper/UdtTypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/UdtTypeHandler.cs -------------------------------------------------------------------------------- /Dapper/WrappedDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/WrappedDataReader.cs -------------------------------------------------------------------------------- /Dapper/WrappedReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/WrappedReader.cs -------------------------------------------------------------------------------- /Dapper/XmlHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Dapper/XmlHandlers.cs -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/License.txt -------------------------------------------------------------------------------- /NonCLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/NonCLA.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/Readme.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/appveyor.yml -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Benchmarks.Belgrade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Benchmarks.Belgrade.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Benchmarks.Dapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Benchmarks.Dapper.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Benchmarks.Dashing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Benchmarks.Dashing.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Benchmarks.EntityFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Benchmarks.EntityFramework.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Benchmarks.EntityFrameworkCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Benchmarks.EntityFrameworkCore.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Benchmarks.HandCoded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Benchmarks.HandCoded.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Benchmarks.Linq2DB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Benchmarks.Linq2DB.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Benchmarks.Linq2Sql.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Benchmarks.Linq2Sql.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Benchmarks.Massive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Benchmarks.Massive.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Benchmarks.Mighty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Benchmarks.Mighty.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Benchmarks.NHibernate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Benchmarks.NHibernate.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Benchmarks.Norm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Benchmarks.Norm.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Benchmarks.PetaPoco.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Benchmarks.PetaPoco.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Benchmarks.RepoDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Benchmarks.RepoDB.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Benchmarks.ServiceStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Benchmarks.ServiceStack.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Benchmarks.SqlMarshal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Benchmarks.SqlMarshal.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Benchmarks.Susanoo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Benchmarks.Susanoo.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Benchmarks.XPO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Benchmarks.XPO.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Benchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Benchmarks.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Config.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Dapper.Tests.Performance.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Dapper.Tests.Performance.csproj -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/DapperCacheImpact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/DapperCacheImpact.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Dashing/DashingConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Dashing/DashingConfiguration.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Dashing/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Dashing/Post.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/EntityFramework/EFContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/EntityFramework/EFContext.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/EntityFrameworkCore/EFCoreContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/EntityFrameworkCore/EFCoreContext.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Helpers/ORMColum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Helpers/ORMColum.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Helpers/ReturnColum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Helpers/ReturnColum.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/LegacyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/LegacyTests.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Linq2DB/ConnectionStringSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Linq2DB/ConnectionStringSettings.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Linq2DB/Linq2DBContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Linq2DB/Linq2DBContext.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Linq2DB/Linq2DbSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Linq2DB/Linq2DbSettings.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Linq2Sql/DataClasses.dbml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Linq2Sql/DataClasses.dbml -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Linq2Sql/DataClasses.dbml.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Linq2Sql/DataClasses.dbml.layout -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Linq2Sql/DataClasses.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Linq2Sql/DataClasses.designer.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Massive/Massive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Massive/Massive.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/NHibernate/NHibernateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/NHibernate/NHibernateHelper.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/NHibernate/Post.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/NHibernate/Post.hbm.xml -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/NHibernate/hibernate.cfg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/NHibernate/hibernate.cfg.xml -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/PetaPoco/PetaPoco.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/PetaPoco/PetaPoco.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Post.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/Program.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/SqlDataReaderHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/SqlDataReaderHelper.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/XPO/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/XPO/Post.cs -------------------------------------------------------------------------------- /benchmarks/Dapper.Tests.Performance/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Dapper.Tests.Performance/app.config -------------------------------------------------------------------------------- /benchmarks/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/benchmarks/Directory.Build.props -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/dapper-sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/docs/dapper-sponsor.png -------------------------------------------------------------------------------- /docs/dapperplus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/docs/dapperplus.md -------------------------------------------------------------------------------- /docs/dapperplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/docs/dapperplus.png -------------------------------------------------------------------------------- /docs/docs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/docs/docs.csproj -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/docs/readme.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/global.json -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/nuget.config -------------------------------------------------------------------------------- /signatures/version1/cla.json: -------------------------------------------------------------------------------- 1 | { 2 | "signedContributors": [] 3 | } -------------------------------------------------------------------------------- /tests/Dapper.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/App.config -------------------------------------------------------------------------------- /tests/Dapper.Tests/AsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/AsyncTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/ConstructorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/ConstructorTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/Dapper.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/Dapper.Tests.csproj -------------------------------------------------------------------------------- /tests/Dapper.Tests/DataReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/DataReaderTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/DateTimeOnlyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/DateTimeOnlyTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/DecimalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/DecimalTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/EnumTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/EnumTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/Helpers/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/Helpers/Attributes.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/Helpers/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/Helpers/Common.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/Helpers/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/Helpers/IsExternalInit.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/Helpers/SqlServerTypesLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/Helpers/SqlServerTypesLoader.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/Helpers/TransactedConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/Helpers/TransactedConnection.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/Helpers/XunitSkippable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/Helpers/XunitSkippable.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/LiteralTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/LiteralTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/MiscTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/MiscTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/MultiMapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/MultiMapTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/NullTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/NullTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/ParameterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/ParameterTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/ProcedureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/ProcedureTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/ProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/ProviderTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/Providers/DuckDBTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/Providers/DuckDBTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/Providers/EntityFrameworkTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/Providers/EntityFrameworkTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/Providers/FirebirdTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/Providers/FirebirdTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/Providers/Linq2SqlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/Providers/Linq2SqlTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/Providers/MySQLTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/Providers/MySQLTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/Providers/OLDEBTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/Providers/OLDEBTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/Providers/PostgresqlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/Providers/PostgresqlTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/Providers/SnowflakeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/Providers/SnowflakeTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/Providers/SqliteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/Providers/SqliteTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/QueryMultipleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/QueryMultipleTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/SharedTypes/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/SharedTypes/Address.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/SharedTypes/Bar1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/SharedTypes/Bar1.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/SharedTypes/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/SharedTypes/Category.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/SharedTypes/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/SharedTypes/Comment.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/SharedTypes/Dog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/SharedTypes/Dog.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/SharedTypes/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/SharedTypes/Enums.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/SharedTypes/Foo1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/SharedTypes/Foo1.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/SharedTypes/HazNameId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/SharedTypes/HazNameId.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/SharedTypes/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/SharedTypes/Index.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/SharedTypes/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/SharedTypes/Person.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/SharedTypes/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/SharedTypes/Post.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/SharedTypes/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/SharedTypes/Product.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/SharedTypes/ReviewBoard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/SharedTypes/ReviewBoard.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/SharedTypes/ShortEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/SharedTypes/ShortEnum.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/SharedTypes/SomeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/SharedTypes/SomeType.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/SharedTypes/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/SharedTypes/User.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/SingleRowTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/SingleRowTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/SqlBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/SqlBuilderTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/TestBase.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/TransactionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/TransactionTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/TupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/TupleTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/TypeHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/TypeHandlerTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/WrappedReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/WrappedReaderTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/XmlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/XmlTests.cs -------------------------------------------------------------------------------- /tests/Dapper.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Dapper.Tests/xunit.runner.json -------------------------------------------------------------------------------- /tests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Directory.Build.props -------------------------------------------------------------------------------- /tests/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/Directory.Build.targets -------------------------------------------------------------------------------- /tests/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/tests/docker-compose.yml -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperLib/Dapper/HEAD/version.json --------------------------------------------------------------------------------