├── .gitattributes ├── .gitignore ├── LICENSE ├── NPoco.sln ├── NuGet.Config ├── README.md ├── src ├── NPoco.Abstractions │ ├── AliasAttribute.cs │ ├── AnsiString.cs │ ├── BatchOptions.cs │ ├── CloneExtensions.cs │ ├── ColumnAttribute.cs │ ├── ColumnInfo.cs │ ├── ColumnTypeAttribute.cs │ ├── ComplexMappingAttribute.cs │ ├── ComputedColumnAttribute.cs │ ├── ComputedColumnType.cs │ ├── ConstructAttribute.cs │ ├── DbSpecific │ │ └── Postgresql │ │ │ ├── OnConflictDoNothingAttribute.cs │ │ │ └── OnConflictDoNothingStatementHook.cs │ ├── DeleteContext.cs │ ├── ExplicitColumnsAttribute.cs │ ├── Expressions │ │ ├── GeneralMember.cs │ │ ├── ISqlExpression.cs │ │ ├── MemberChainHelper.cs │ │ ├── OrderByMember.cs │ │ ├── PredicateBuilder.cs │ │ └── SelectMember.cs │ ├── IAlterStatementHook.cs │ ├── IAsyncBaseDatabase.cs │ ├── IAsyncDatabase.cs │ ├── IAsyncTransaction.cs │ ├── IBaseCommonDatabase.cs │ ├── IBaseDatabase.cs │ ├── IColumnSerializer.cs │ ├── IDatabase.cs │ ├── IDatabaseHelpers.cs │ ├── IDatabaseQuery.cs │ ├── IDatabaseType.cs │ ├── IFastCreate.cs │ ├── IInterceptor.cs │ ├── IMapper.cs │ ├── IMapperCollection.cs │ ├── IPocoDataFactory.cs │ ├── ITransaction.cs │ ├── IValueObject.cs │ ├── IgnoreAttribute.cs │ ├── InsertBulkOptions.cs │ ├── InsertContext.cs │ ├── Linq │ │ ├── IAsyncDeleteQueryProvider.cs │ │ ├── IAsyncQueryProvider.cs │ │ ├── IAsyncUpdateQueryProvider.cs │ │ ├── IDeleteQueryProvider.cs │ │ ├── IUpdateQueryProvider.cs │ │ ├── JoinData.cs │ │ ├── JoinType.cs │ │ ├── ParameterRebinder.cs │ │ ├── QueryBuilder.cs │ │ ├── QueryBuilderData.cs │ │ └── QueryContext.cs │ ├── MemberAccessor.cs │ ├── MemberInfoData.cs │ ├── NPoco.Abstractions.csproj │ ├── OpenConnectionOptions.cs │ ├── Page.cs │ ├── ParameterHelper.cs │ ├── PersistedTypeAttribute.cs │ ├── PocoColumn.cs │ ├── PocoData.cs │ ├── PocoExpando.cs │ ├── PocoMember.cs │ ├── PreparedInsertStatement.cs │ ├── PreparedUpdateStatement.cs │ ├── PrimaryKeyAttribute.cs │ ├── ReferenceAttribute.cs │ ├── ReferenceType.cs │ ├── ReflectionUtils.cs │ ├── ResultColumnAttribute.cs │ ├── SQLParts.cs │ ├── SerializedColumnAttribute.cs │ ├── Snapshotter.cs │ ├── Sql.cs │ ├── SqlBuilder.cs │ ├── SqlOfTContext.cs │ ├── StatementPreparationHookAttribute.cs │ ├── TableInfo.cs │ ├── TableNameAttribute.cs │ ├── TypeHelpers.cs │ ├── UpdateBatch.cs │ ├── UpdateContext.cs │ ├── VersionColumnAttribute.cs │ └── VersionColumnType.cs ├── NPoco.JsonNet │ ├── JsonNetColumnSerializer.cs │ ├── NPoco.JsonNet.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── NPoco.SqlServer.SystemData │ ├── DatabaseTypes │ │ ├── SqlServer2008DatabaseType.cs │ │ ├── SqlServer2012DatabaseType.cs │ │ ├── SqlServerCEDatabaseType.cs │ │ └── SqlServerDatabaseType.cs │ ├── DefaultPollyPolicy.cs │ ├── IPollyPolicy.cs │ ├── NPoco.SqlServer.SystemData.csproj │ ├── SqlBulkCopyHelper.cs │ ├── SqlServerDatabase.cs │ └── SqlServerTransientExceptionDetector.cs ├── NPoco.SqlServer │ ├── DatabaseTypes │ │ ├── SqlServer2008DatabaseType.cs │ │ ├── SqlServer2012DatabaseType.cs │ │ ├── SqlServerCEDatabaseType.cs │ │ └── SqlServerDatabaseType.cs │ ├── DefaultPollyPolicy.cs │ ├── IPollyPolicy.cs │ ├── NPoco.SqlServer.csproj │ ├── SqlBulkCopyHelper.cs │ ├── SqlServerDatabase.cs │ └── SqlServerTransientExceptionDetector.cs └── NPoco │ ├── AsyncDatabase.cs │ ├── AsyncHelper.cs │ ├── AsyncParameterExtensions.cs │ ├── AsyncTransaction.cs │ ├── AutoSelectHelper.cs │ ├── Base62.cs │ ├── BatchingExtensions.cs │ ├── Cache.cs │ ├── ColumnInfoCreator.cs │ ├── Database.cs │ ├── DatabaseFactory.cs │ ├── DatabaseFactoryConfig.cs │ ├── DatabaseType.cs │ ├── DatabaseTypes │ ├── FirebirdDatabaseType.cs │ ├── MySqlDatabaseType.cs │ ├── OracleDatabaseType.cs │ ├── OracleManagedDatabaseType.cs │ ├── PostgreSQLDatabaseType.cs │ └── SQLiteDatabaseType.cs │ ├── DefaultMapper.cs │ ├── EnumMapper.cs │ ├── ExpandoColumn.cs │ ├── ExpressionExtensions.cs │ ├── Expressions │ ├── DefaultSqlExpression.cs │ ├── ExpressionVisitor.cs │ ├── FirebirdSqlExpression.cs │ ├── ISqlExpression.cs │ ├── ISqlExpressionContext.cs │ ├── MySqlSqlExpression.cs │ ├── OracleExpression.cs │ ├── PartialEvaluator.cs │ ├── PostgreSQLExpression.cs │ ├── S.cs │ └── SqlExpression.cs │ ├── FastCreate.cs │ ├── FastJsonColumnSerializer.cs │ ├── FluentMappings │ ├── ColumnConfigurationBuilder.cs │ ├── ColumnDefinition.cs │ ├── ConventionExtensions.cs │ ├── ConventionScanner.cs │ ├── ConventionScannerSettings.cs │ ├── FluentMappingConfiguration.cs │ ├── FluentMappingsPocoDataBuilder.cs │ ├── IColumnsBuilderConventions.cs │ ├── IConventionScanner.cs │ ├── IMap.cs │ ├── Inflector.cs │ ├── Map.cs │ ├── Mappings.cs │ ├── MemberHelper.cs │ ├── PropertyBuilderConventions.cs │ └── TypeDefinition.cs │ ├── HashCodeCombiner.cs │ ├── IOnLoaded.cs │ ├── InsertStatements.cs │ ├── Internal │ └── ProcessMapperExtensions.cs │ ├── License.txt │ ├── Linq │ ├── ComplexSqlBuilder.cs │ ├── DeleteQueryProvider.cs │ ├── ISimpleQueryProviderExpression.cs │ ├── SimpleQueryProvider.cs │ └── UpdateQueryProvider.cs │ ├── MapperCollection.cs │ ├── MappingFactory.cs │ ├── MappingHelper.cs │ ├── NPoco.csproj │ ├── NullFastCreate.cs │ ├── OneToManyHelper.cs │ ├── PagingHelper.cs │ ├── PocoDataBuilder.cs │ ├── PocoDataFactory.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── RelationExtensions.cs │ ├── RowMappers │ ├── ArrayMapper.cs │ ├── DictionaryMapper.cs │ ├── DynamicPocoMember.cs │ ├── GroupResult.cs │ ├── IRowMapper.cs │ ├── MyEnumerableExtensions.cs │ ├── OrderedDictionaryMapper.cs │ ├── PosName.cs │ ├── PropertyMapper.cs │ ├── PropertyMapperNameConvention.cs │ ├── RowMapperContext.cs │ ├── ValueTupleMapper.cs │ └── ValueTypeMapper.cs │ ├── Singleton.cs │ ├── SqlExtensions.cs │ ├── StringExtensions.cs │ ├── TableInfoCreator.cs │ ├── Transaction.cs │ ├── UpdateStatements.cs │ ├── VersionExceptionHandling.cs │ └── fastJSON │ ├── Formatter.cs │ ├── Getters.cs │ ├── JSON.cs │ ├── JsonParser.cs │ ├── JsonSerializer.cs │ ├── Reflection.cs │ ├── SafeDictionary.cs │ └── dynamic.cs ├── test └── NPoco.Tests │ ├── Async │ ├── DeleteAsyncTests.cs │ ├── InsertAsyncTests.cs │ ├── QueryAsyncTests.cs │ └── UpdateAsyncTests.cs │ ├── Common │ ├── AdHocUser.cs │ ├── AssignedPkObjectDecorated.cs │ ├── BaseDBDecoratedTest.cs │ ├── BaseDBFluentTest.cs │ ├── BaseDBTest.cs │ ├── ColumnInfoTests.cs │ ├── CompositeObjectDecorated.cs │ ├── CustomerUser.cs │ ├── ExtraUserInfo.cs │ ├── ExtraUserInfoDecorated.cs │ ├── FirebirdDatabase.cs │ ├── FirebirdDefaultMapper.cs │ ├── GuidFromDb.cs │ ├── InMemoryDatabase.cs │ ├── JustPrimaryKey.cs │ ├── SQLLocalDatabase.cs │ ├── TestDatabase.cs │ ├── TestDescriptor.cs │ ├── User.cs │ └── UserDecorated.cs │ ├── ConstructorTests.cs │ ├── DatabaseFactoryTests.cs │ ├── DatabaseTypeTests.cs │ ├── DecoratedTests │ ├── CRUDTests │ │ ├── DeleteTests.cs │ │ ├── InsertTests.cs │ │ ├── SaveTests.cs │ │ └── UpdateTests.cs │ ├── QueryTests │ │ ├── AdvancedFetchDecoratedTest.cs │ │ ├── ConstructorTests.cs │ │ ├── ConverterDecoratedTests.cs │ │ ├── FetchAndQueryDecoratedTests.cs │ │ ├── NestedNestedFetchDecoratedTests.cs │ │ ├── OneToManyDecoratedTests.cs │ │ ├── PagingDecoratedTest.cs │ │ ├── ParentChildIncludeTests.cs │ │ └── SingleAndFirstQueryDecoratedTest.cs │ └── TransactionDecoratedTests.cs │ ├── FluentMappings │ ├── ColumnConfigurationBuilderTests.cs │ ├── MapTests.cs │ ├── SupervisorMap.cs │ └── UserMap.cs │ ├── FluentTests │ ├── DeleteTests.cs │ └── QueryTests │ │ ├── AdvancedFetchFluentTest.cs │ │ ├── ConverterFluentTest.cs │ │ ├── ExpressionFluentTests.cs │ │ ├── FetchAndQueryFluentTest.cs │ │ ├── NullableTests.cs │ │ ├── PagingFluentTest.cs │ │ ├── QueryProviderTests.cs │ │ └── SingleAndFirstQueryFluentTest.cs │ ├── FormatCommandTest.cs │ ├── FormatSqlServerCommandTest.cs │ ├── HashCodeCombinerTests.cs │ ├── MemberAccessorTests.cs │ ├── NPoco.Tests.csproj │ ├── NewMapper │ ├── AbstractClassTests.cs │ ├── ComplexMappingTests.cs │ ├── FakeReader.cs │ ├── FieldTests.cs │ ├── GetterOnlyTests.cs │ ├── IncludesWithLinqProvider.cs │ ├── Models │ │ ├── Extra.cs │ │ ├── Many.cs │ │ ├── Money.cs │ │ ├── Money2.cs │ │ ├── NestedConvention.cs │ │ ├── One.cs │ │ ├── ParentChild.cs │ │ ├── RecursionUser.cs │ │ ├── UserWithAddress.cs │ │ └── UsersNameProjection.cs │ ├── NewMapperPerfTests.cs │ ├── NewMapperTests.cs │ ├── OldFakeReader.cs │ ├── PerfTests.cs │ ├── ValueObjectTests.cs │ └── ValueTupleMapperTests.cs │ ├── PagingHelper.cs │ ├── ParameterHelper.cs │ ├── PocoExpandoTests.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SnapshotterTests.cs │ ├── SqlBuilderTests.cs │ └── config.json └── tools └── PSake └── psake.psm1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/LICENSE -------------------------------------------------------------------------------- /NPoco.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/NPoco.sln -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/README.md -------------------------------------------------------------------------------- /src/NPoco.Abstractions/AliasAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/AliasAttribute.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/AnsiString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/AnsiString.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/BatchOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/BatchOptions.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/CloneExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/CloneExtensions.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/ColumnAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/ColumnAttribute.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/ColumnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/ColumnInfo.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/ColumnTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/ColumnTypeAttribute.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/ComplexMappingAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/ComplexMappingAttribute.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/ComputedColumnAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/ComputedColumnAttribute.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/ComputedColumnType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/ComputedColumnType.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/ConstructAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/ConstructAttribute.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/DbSpecific/Postgresql/OnConflictDoNothingAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/DbSpecific/Postgresql/OnConflictDoNothingAttribute.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/DbSpecific/Postgresql/OnConflictDoNothingStatementHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/DbSpecific/Postgresql/OnConflictDoNothingStatementHook.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/DeleteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/DeleteContext.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/ExplicitColumnsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/ExplicitColumnsAttribute.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Expressions/GeneralMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Expressions/GeneralMember.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Expressions/ISqlExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Expressions/ISqlExpression.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Expressions/MemberChainHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Expressions/MemberChainHelper.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Expressions/OrderByMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Expressions/OrderByMember.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Expressions/PredicateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Expressions/PredicateBuilder.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Expressions/SelectMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Expressions/SelectMember.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/IAlterStatementHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/IAlterStatementHook.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/IAsyncBaseDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/IAsyncBaseDatabase.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/IAsyncDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/IAsyncDatabase.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/IAsyncTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/IAsyncTransaction.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/IBaseCommonDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/IBaseCommonDatabase.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/IBaseDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/IBaseDatabase.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/IColumnSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/IColumnSerializer.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/IDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/IDatabase.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/IDatabaseHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/IDatabaseHelpers.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/IDatabaseQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/IDatabaseQuery.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/IDatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/IDatabaseType.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/IFastCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/IFastCreate.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/IInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/IInterceptor.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/IMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/IMapper.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/IMapperCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/IMapperCollection.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/IPocoDataFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/IPocoDataFactory.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/ITransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/ITransaction.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/IValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/IValueObject.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/IgnoreAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/IgnoreAttribute.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/InsertBulkOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/InsertBulkOptions.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/InsertContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/InsertContext.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Linq/IAsyncDeleteQueryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Linq/IAsyncDeleteQueryProvider.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Linq/IAsyncQueryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Linq/IAsyncQueryProvider.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Linq/IAsyncUpdateQueryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Linq/IAsyncUpdateQueryProvider.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Linq/IDeleteQueryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Linq/IDeleteQueryProvider.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Linq/IUpdateQueryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Linq/IUpdateQueryProvider.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Linq/JoinData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Linq/JoinData.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Linq/JoinType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Linq/JoinType.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Linq/ParameterRebinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Linq/ParameterRebinder.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Linq/QueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Linq/QueryBuilder.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Linq/QueryBuilderData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Linq/QueryBuilderData.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Linq/QueryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Linq/QueryContext.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/MemberAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/MemberAccessor.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/MemberInfoData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/MemberInfoData.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/NPoco.Abstractions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/NPoco.Abstractions.csproj -------------------------------------------------------------------------------- /src/NPoco.Abstractions/OpenConnectionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/OpenConnectionOptions.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Page.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/ParameterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/ParameterHelper.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/PersistedTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/PersistedTypeAttribute.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/PocoColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/PocoColumn.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/PocoData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/PocoData.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/PocoExpando.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/PocoExpando.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/PocoMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/PocoMember.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/PreparedInsertStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/PreparedInsertStatement.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/PreparedUpdateStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/PreparedUpdateStatement.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/PrimaryKeyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/PrimaryKeyAttribute.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/ReferenceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/ReferenceAttribute.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/ReferenceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/ReferenceType.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/ReflectionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/ReflectionUtils.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/ResultColumnAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/ResultColumnAttribute.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/SQLParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/SQLParts.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/SerializedColumnAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/SerializedColumnAttribute.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Snapshotter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Snapshotter.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/Sql.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/Sql.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/SqlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/SqlBuilder.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/SqlOfTContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/SqlOfTContext.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/StatementPreparationHookAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/StatementPreparationHookAttribute.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/TableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/TableInfo.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/TableNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/TableNameAttribute.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/TypeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/TypeHelpers.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/UpdateBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/UpdateBatch.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/UpdateContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/UpdateContext.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/VersionColumnAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/VersionColumnAttribute.cs -------------------------------------------------------------------------------- /src/NPoco.Abstractions/VersionColumnType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.Abstractions/VersionColumnType.cs -------------------------------------------------------------------------------- /src/NPoco.JsonNet/JsonNetColumnSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.JsonNet/JsonNetColumnSerializer.cs -------------------------------------------------------------------------------- /src/NPoco.JsonNet/NPoco.JsonNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.JsonNet/NPoco.JsonNet.csproj -------------------------------------------------------------------------------- /src/NPoco.JsonNet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.JsonNet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NPoco.SqlServer.SystemData/DatabaseTypes/SqlServer2008DatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer.SystemData/DatabaseTypes/SqlServer2008DatabaseType.cs -------------------------------------------------------------------------------- /src/NPoco.SqlServer.SystemData/DatabaseTypes/SqlServer2012DatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer.SystemData/DatabaseTypes/SqlServer2012DatabaseType.cs -------------------------------------------------------------------------------- /src/NPoco.SqlServer.SystemData/DatabaseTypes/SqlServerCEDatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer.SystemData/DatabaseTypes/SqlServerCEDatabaseType.cs -------------------------------------------------------------------------------- /src/NPoco.SqlServer.SystemData/DatabaseTypes/SqlServerDatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer.SystemData/DatabaseTypes/SqlServerDatabaseType.cs -------------------------------------------------------------------------------- /src/NPoco.SqlServer.SystemData/DefaultPollyPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer.SystemData/DefaultPollyPolicy.cs -------------------------------------------------------------------------------- /src/NPoco.SqlServer.SystemData/IPollyPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer.SystemData/IPollyPolicy.cs -------------------------------------------------------------------------------- /src/NPoco.SqlServer.SystemData/NPoco.SqlServer.SystemData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer.SystemData/NPoco.SqlServer.SystemData.csproj -------------------------------------------------------------------------------- /src/NPoco.SqlServer.SystemData/SqlBulkCopyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer.SystemData/SqlBulkCopyHelper.cs -------------------------------------------------------------------------------- /src/NPoco.SqlServer.SystemData/SqlServerDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer.SystemData/SqlServerDatabase.cs -------------------------------------------------------------------------------- /src/NPoco.SqlServer.SystemData/SqlServerTransientExceptionDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer.SystemData/SqlServerTransientExceptionDetector.cs -------------------------------------------------------------------------------- /src/NPoco.SqlServer/DatabaseTypes/SqlServer2008DatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer/DatabaseTypes/SqlServer2008DatabaseType.cs -------------------------------------------------------------------------------- /src/NPoco.SqlServer/DatabaseTypes/SqlServer2012DatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer/DatabaseTypes/SqlServer2012DatabaseType.cs -------------------------------------------------------------------------------- /src/NPoco.SqlServer/DatabaseTypes/SqlServerCEDatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer/DatabaseTypes/SqlServerCEDatabaseType.cs -------------------------------------------------------------------------------- /src/NPoco.SqlServer/DatabaseTypes/SqlServerDatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer/DatabaseTypes/SqlServerDatabaseType.cs -------------------------------------------------------------------------------- /src/NPoco.SqlServer/DefaultPollyPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer/DefaultPollyPolicy.cs -------------------------------------------------------------------------------- /src/NPoco.SqlServer/IPollyPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer/IPollyPolicy.cs -------------------------------------------------------------------------------- /src/NPoco.SqlServer/NPoco.SqlServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer/NPoco.SqlServer.csproj -------------------------------------------------------------------------------- /src/NPoco.SqlServer/SqlBulkCopyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer/SqlBulkCopyHelper.cs -------------------------------------------------------------------------------- /src/NPoco.SqlServer/SqlServerDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer/SqlServerDatabase.cs -------------------------------------------------------------------------------- /src/NPoco.SqlServer/SqlServerTransientExceptionDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco.SqlServer/SqlServerTransientExceptionDetector.cs -------------------------------------------------------------------------------- /src/NPoco/AsyncDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/AsyncDatabase.cs -------------------------------------------------------------------------------- /src/NPoco/AsyncHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/AsyncHelper.cs -------------------------------------------------------------------------------- /src/NPoco/AsyncParameterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/AsyncParameterExtensions.cs -------------------------------------------------------------------------------- /src/NPoco/AsyncTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/AsyncTransaction.cs -------------------------------------------------------------------------------- /src/NPoco/AutoSelectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/AutoSelectHelper.cs -------------------------------------------------------------------------------- /src/NPoco/Base62.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Base62.cs -------------------------------------------------------------------------------- /src/NPoco/BatchingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/BatchingExtensions.cs -------------------------------------------------------------------------------- /src/NPoco/Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Cache.cs -------------------------------------------------------------------------------- /src/NPoco/ColumnInfoCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/ColumnInfoCreator.cs -------------------------------------------------------------------------------- /src/NPoco/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Database.cs -------------------------------------------------------------------------------- /src/NPoco/DatabaseFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/DatabaseFactory.cs -------------------------------------------------------------------------------- /src/NPoco/DatabaseFactoryConfig.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NPoco/DatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/DatabaseType.cs -------------------------------------------------------------------------------- /src/NPoco/DatabaseTypes/FirebirdDatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/DatabaseTypes/FirebirdDatabaseType.cs -------------------------------------------------------------------------------- /src/NPoco/DatabaseTypes/MySqlDatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/DatabaseTypes/MySqlDatabaseType.cs -------------------------------------------------------------------------------- /src/NPoco/DatabaseTypes/OracleDatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/DatabaseTypes/OracleDatabaseType.cs -------------------------------------------------------------------------------- /src/NPoco/DatabaseTypes/OracleManagedDatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/DatabaseTypes/OracleManagedDatabaseType.cs -------------------------------------------------------------------------------- /src/NPoco/DatabaseTypes/PostgreSQLDatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/DatabaseTypes/PostgreSQLDatabaseType.cs -------------------------------------------------------------------------------- /src/NPoco/DatabaseTypes/SQLiteDatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/DatabaseTypes/SQLiteDatabaseType.cs -------------------------------------------------------------------------------- /src/NPoco/DefaultMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/DefaultMapper.cs -------------------------------------------------------------------------------- /src/NPoco/EnumMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/EnumMapper.cs -------------------------------------------------------------------------------- /src/NPoco/ExpandoColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/ExpandoColumn.cs -------------------------------------------------------------------------------- /src/NPoco/ExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/ExpressionExtensions.cs -------------------------------------------------------------------------------- /src/NPoco/Expressions/DefaultSqlExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Expressions/DefaultSqlExpression.cs -------------------------------------------------------------------------------- /src/NPoco/Expressions/ExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Expressions/ExpressionVisitor.cs -------------------------------------------------------------------------------- /src/NPoco/Expressions/FirebirdSqlExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Expressions/FirebirdSqlExpression.cs -------------------------------------------------------------------------------- /src/NPoco/Expressions/ISqlExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Expressions/ISqlExpression.cs -------------------------------------------------------------------------------- /src/NPoco/Expressions/ISqlExpressionContext.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace NPoco.Expressions 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /src/NPoco/Expressions/MySqlSqlExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Expressions/MySqlSqlExpression.cs -------------------------------------------------------------------------------- /src/NPoco/Expressions/OracleExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Expressions/OracleExpression.cs -------------------------------------------------------------------------------- /src/NPoco/Expressions/PartialEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Expressions/PartialEvaluator.cs -------------------------------------------------------------------------------- /src/NPoco/Expressions/PostgreSQLExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Expressions/PostgreSQLExpression.cs -------------------------------------------------------------------------------- /src/NPoco/Expressions/S.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Expressions/S.cs -------------------------------------------------------------------------------- /src/NPoco/Expressions/SqlExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Expressions/SqlExpression.cs -------------------------------------------------------------------------------- /src/NPoco/FastCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/FastCreate.cs -------------------------------------------------------------------------------- /src/NPoco/FastJsonColumnSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/FastJsonColumnSerializer.cs -------------------------------------------------------------------------------- /src/NPoco/FluentMappings/ColumnConfigurationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/FluentMappings/ColumnConfigurationBuilder.cs -------------------------------------------------------------------------------- /src/NPoco/FluentMappings/ColumnDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/FluentMappings/ColumnDefinition.cs -------------------------------------------------------------------------------- /src/NPoco/FluentMappings/ConventionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/FluentMappings/ConventionExtensions.cs -------------------------------------------------------------------------------- /src/NPoco/FluentMappings/ConventionScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/FluentMappings/ConventionScanner.cs -------------------------------------------------------------------------------- /src/NPoco/FluentMappings/ConventionScannerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/FluentMappings/ConventionScannerSettings.cs -------------------------------------------------------------------------------- /src/NPoco/FluentMappings/FluentMappingConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/FluentMappings/FluentMappingConfiguration.cs -------------------------------------------------------------------------------- /src/NPoco/FluentMappings/FluentMappingsPocoDataBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/FluentMappings/FluentMappingsPocoDataBuilder.cs -------------------------------------------------------------------------------- /src/NPoco/FluentMappings/IColumnsBuilderConventions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/FluentMappings/IColumnsBuilderConventions.cs -------------------------------------------------------------------------------- /src/NPoco/FluentMappings/IConventionScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/FluentMappings/IConventionScanner.cs -------------------------------------------------------------------------------- /src/NPoco/FluentMappings/IMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/FluentMappings/IMap.cs -------------------------------------------------------------------------------- /src/NPoco/FluentMappings/Inflector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/FluentMappings/Inflector.cs -------------------------------------------------------------------------------- /src/NPoco/FluentMappings/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/FluentMappings/Map.cs -------------------------------------------------------------------------------- /src/NPoco/FluentMappings/Mappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/FluentMappings/Mappings.cs -------------------------------------------------------------------------------- /src/NPoco/FluentMappings/MemberHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/FluentMappings/MemberHelper.cs -------------------------------------------------------------------------------- /src/NPoco/FluentMappings/PropertyBuilderConventions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/FluentMappings/PropertyBuilderConventions.cs -------------------------------------------------------------------------------- /src/NPoco/FluentMappings/TypeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/FluentMappings/TypeDefinition.cs -------------------------------------------------------------------------------- /src/NPoco/HashCodeCombiner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/HashCodeCombiner.cs -------------------------------------------------------------------------------- /src/NPoco/IOnLoaded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/IOnLoaded.cs -------------------------------------------------------------------------------- /src/NPoco/InsertStatements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/InsertStatements.cs -------------------------------------------------------------------------------- /src/NPoco/Internal/ProcessMapperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Internal/ProcessMapperExtensions.cs -------------------------------------------------------------------------------- /src/NPoco/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/License.txt -------------------------------------------------------------------------------- /src/NPoco/Linq/ComplexSqlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Linq/ComplexSqlBuilder.cs -------------------------------------------------------------------------------- /src/NPoco/Linq/DeleteQueryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Linq/DeleteQueryProvider.cs -------------------------------------------------------------------------------- /src/NPoco/Linq/ISimpleQueryProviderExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Linq/ISimpleQueryProviderExpression.cs -------------------------------------------------------------------------------- /src/NPoco/Linq/SimpleQueryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Linq/SimpleQueryProvider.cs -------------------------------------------------------------------------------- /src/NPoco/Linq/UpdateQueryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Linq/UpdateQueryProvider.cs -------------------------------------------------------------------------------- /src/NPoco/MapperCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/MapperCollection.cs -------------------------------------------------------------------------------- /src/NPoco/MappingFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/MappingFactory.cs -------------------------------------------------------------------------------- /src/NPoco/MappingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/MappingHelper.cs -------------------------------------------------------------------------------- /src/NPoco/NPoco.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/NPoco.csproj -------------------------------------------------------------------------------- /src/NPoco/NullFastCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/NullFastCreate.cs -------------------------------------------------------------------------------- /src/NPoco/OneToManyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/OneToManyHelper.cs -------------------------------------------------------------------------------- /src/NPoco/PagingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/PagingHelper.cs -------------------------------------------------------------------------------- /src/NPoco/PocoDataBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/PocoDataBuilder.cs -------------------------------------------------------------------------------- /src/NPoco/PocoDataFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/PocoDataFactory.cs -------------------------------------------------------------------------------- /src/NPoco/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NPoco/RelationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/RelationExtensions.cs -------------------------------------------------------------------------------- /src/NPoco/RowMappers/ArrayMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/RowMappers/ArrayMapper.cs -------------------------------------------------------------------------------- /src/NPoco/RowMappers/DictionaryMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/RowMappers/DictionaryMapper.cs -------------------------------------------------------------------------------- /src/NPoco/RowMappers/DynamicPocoMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/RowMappers/DynamicPocoMember.cs -------------------------------------------------------------------------------- /src/NPoco/RowMappers/GroupResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/RowMappers/GroupResult.cs -------------------------------------------------------------------------------- /src/NPoco/RowMappers/IRowMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/RowMappers/IRowMapper.cs -------------------------------------------------------------------------------- /src/NPoco/RowMappers/MyEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/RowMappers/MyEnumerableExtensions.cs -------------------------------------------------------------------------------- /src/NPoco/RowMappers/OrderedDictionaryMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/RowMappers/OrderedDictionaryMapper.cs -------------------------------------------------------------------------------- /src/NPoco/RowMappers/PosName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/RowMappers/PosName.cs -------------------------------------------------------------------------------- /src/NPoco/RowMappers/PropertyMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/RowMappers/PropertyMapper.cs -------------------------------------------------------------------------------- /src/NPoco/RowMappers/PropertyMapperNameConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/RowMappers/PropertyMapperNameConvention.cs -------------------------------------------------------------------------------- /src/NPoco/RowMappers/RowMapperContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/RowMappers/RowMapperContext.cs -------------------------------------------------------------------------------- /src/NPoco/RowMappers/ValueTupleMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/RowMappers/ValueTupleMapper.cs -------------------------------------------------------------------------------- /src/NPoco/RowMappers/ValueTypeMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/RowMappers/ValueTypeMapper.cs -------------------------------------------------------------------------------- /src/NPoco/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Singleton.cs -------------------------------------------------------------------------------- /src/NPoco/SqlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/SqlExtensions.cs -------------------------------------------------------------------------------- /src/NPoco/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/StringExtensions.cs -------------------------------------------------------------------------------- /src/NPoco/TableInfoCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/TableInfoCreator.cs -------------------------------------------------------------------------------- /src/NPoco/Transaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/Transaction.cs -------------------------------------------------------------------------------- /src/NPoco/UpdateStatements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/UpdateStatements.cs -------------------------------------------------------------------------------- /src/NPoco/VersionExceptionHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/VersionExceptionHandling.cs -------------------------------------------------------------------------------- /src/NPoco/fastJSON/Formatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/fastJSON/Formatter.cs -------------------------------------------------------------------------------- /src/NPoco/fastJSON/Getters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/fastJSON/Getters.cs -------------------------------------------------------------------------------- /src/NPoco/fastJSON/JSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/fastJSON/JSON.cs -------------------------------------------------------------------------------- /src/NPoco/fastJSON/JsonParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/fastJSON/JsonParser.cs -------------------------------------------------------------------------------- /src/NPoco/fastJSON/JsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/fastJSON/JsonSerializer.cs -------------------------------------------------------------------------------- /src/NPoco/fastJSON/Reflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/fastJSON/Reflection.cs -------------------------------------------------------------------------------- /src/NPoco/fastJSON/SafeDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/fastJSON/SafeDictionary.cs -------------------------------------------------------------------------------- /src/NPoco/fastJSON/dynamic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/src/NPoco/fastJSON/dynamic.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Async/DeleteAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Async/DeleteAsyncTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Async/InsertAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Async/InsertAsyncTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Async/QueryAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Async/QueryAsyncTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Async/UpdateAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Async/UpdateAsyncTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/AdHocUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/AdHocUser.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/AssignedPkObjectDecorated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/AssignedPkObjectDecorated.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/BaseDBDecoratedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/BaseDBDecoratedTest.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/BaseDBFluentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/BaseDBFluentTest.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/BaseDBTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/BaseDBTest.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/ColumnInfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/ColumnInfoTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/CompositeObjectDecorated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/CompositeObjectDecorated.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/CustomerUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/CustomerUser.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/ExtraUserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/ExtraUserInfo.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/ExtraUserInfoDecorated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/ExtraUserInfoDecorated.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/FirebirdDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/FirebirdDatabase.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/FirebirdDefaultMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/FirebirdDefaultMapper.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/GuidFromDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/GuidFromDb.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/InMemoryDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/InMemoryDatabase.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/JustPrimaryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/JustPrimaryKey.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/SQLLocalDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/SQLLocalDatabase.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/TestDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/TestDatabase.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/TestDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/TestDescriptor.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/User.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Common/UserDecorated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Common/UserDecorated.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/ConstructorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/ConstructorTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/DatabaseFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/DatabaseFactoryTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/DatabaseTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/DatabaseTypeTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/DecoratedTests/CRUDTests/DeleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/DecoratedTests/CRUDTests/DeleteTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/DecoratedTests/CRUDTests/InsertTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/DecoratedTests/CRUDTests/InsertTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/DecoratedTests/CRUDTests/SaveTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/DecoratedTests/CRUDTests/SaveTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/DecoratedTests/CRUDTests/UpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/DecoratedTests/CRUDTests/UpdateTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/DecoratedTests/QueryTests/AdvancedFetchDecoratedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/DecoratedTests/QueryTests/AdvancedFetchDecoratedTest.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/DecoratedTests/QueryTests/ConstructorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/DecoratedTests/QueryTests/ConstructorTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/DecoratedTests/QueryTests/ConverterDecoratedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/DecoratedTests/QueryTests/ConverterDecoratedTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/DecoratedTests/QueryTests/FetchAndQueryDecoratedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/DecoratedTests/QueryTests/FetchAndQueryDecoratedTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/DecoratedTests/QueryTests/NestedNestedFetchDecoratedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/DecoratedTests/QueryTests/NestedNestedFetchDecoratedTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/DecoratedTests/QueryTests/OneToManyDecoratedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/DecoratedTests/QueryTests/OneToManyDecoratedTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/DecoratedTests/QueryTests/PagingDecoratedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/DecoratedTests/QueryTests/PagingDecoratedTest.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/DecoratedTests/QueryTests/ParentChildIncludeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/DecoratedTests/QueryTests/ParentChildIncludeTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/DecoratedTests/QueryTests/SingleAndFirstQueryDecoratedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/DecoratedTests/QueryTests/SingleAndFirstQueryDecoratedTest.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/DecoratedTests/TransactionDecoratedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/DecoratedTests/TransactionDecoratedTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/FluentMappings/ColumnConfigurationBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/FluentMappings/ColumnConfigurationBuilderTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/FluentMappings/MapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/FluentMappings/MapTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/FluentMappings/SupervisorMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/FluentMappings/SupervisorMap.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/FluentMappings/UserMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/FluentMappings/UserMap.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/FluentTests/DeleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/FluentTests/DeleteTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/FluentTests/QueryTests/AdvancedFetchFluentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/FluentTests/QueryTests/AdvancedFetchFluentTest.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/FluentTests/QueryTests/ConverterFluentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/FluentTests/QueryTests/ConverterFluentTest.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/FluentTests/QueryTests/ExpressionFluentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/FluentTests/QueryTests/ExpressionFluentTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/FluentTests/QueryTests/FetchAndQueryFluentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/FluentTests/QueryTests/FetchAndQueryFluentTest.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/FluentTests/QueryTests/NullableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/FluentTests/QueryTests/NullableTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/FluentTests/QueryTests/PagingFluentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/FluentTests/QueryTests/PagingFluentTest.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/FluentTests/QueryTests/QueryProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/FluentTests/QueryTests/QueryProviderTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/FluentTests/QueryTests/SingleAndFirstQueryFluentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/FluentTests/QueryTests/SingleAndFirstQueryFluentTest.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/FormatCommandTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/FormatCommandTest.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/FormatSqlServerCommandTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/FormatSqlServerCommandTest.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/HashCodeCombinerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/HashCodeCombinerTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/MemberAccessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/MemberAccessorTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NPoco.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NPoco.Tests.csproj -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/AbstractClassTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/AbstractClassTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/ComplexMappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/ComplexMappingTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/FakeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/FakeReader.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/FieldTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/FieldTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/GetterOnlyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/GetterOnlyTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/IncludesWithLinqProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/IncludesWithLinqProvider.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/Models/Extra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/Models/Extra.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/Models/Many.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/Models/Many.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/Models/Money.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/Models/Money.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/Models/Money2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/Models/Money2.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/Models/NestedConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/Models/NestedConvention.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/Models/One.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/Models/One.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/Models/ParentChild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/Models/ParentChild.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/Models/RecursionUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/Models/RecursionUser.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/Models/UserWithAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/Models/UserWithAddress.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/Models/UsersNameProjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/Models/UsersNameProjection.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/NewMapperPerfTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/NewMapperPerfTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/NewMapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/NewMapperTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/OldFakeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/OldFakeReader.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/PerfTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/PerfTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/ValueObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/ValueObjectTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/NewMapper/ValueTupleMapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/NewMapper/ValueTupleMapperTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/PagingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/PagingHelper.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/ParameterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/ParameterHelper.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/PocoExpandoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/PocoExpandoTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/SnapshotterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/SnapshotterTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/SqlBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/SqlBuilderTests.cs -------------------------------------------------------------------------------- /test/NPoco.Tests/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/test/NPoco.Tests/config.json -------------------------------------------------------------------------------- /tools/PSake/psake.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schotime/NPoco/HEAD/tools/PSake/psake.psm1 --------------------------------------------------------------------------------