├── .gitattributes ├── .gitignore ├── .vs ├── Trolley.sqlite └── Trolley │ └── v15 │ └── sqlite3 │ └── storage.ide ├── README.md ├── Trolley.sln ├── clear.bat ├── src ├── Trolley.MySqlConnector │ ├── MySqlContinuedCreate.cs │ ├── MySqlContinuedUpdate.cs │ ├── MySqlCreate.cs │ ├── MySqlCreateVisitor.cs │ ├── MySqlCreated.cs │ ├── MySqlDelete.cs │ ├── MySqlDeleteVisitor.cs │ ├── MySqlDeleted.cs │ ├── MySqlFromCommand.cs │ ├── MySqlGroupingCommand.cs │ ├── MySqlMultipleQuery.cs │ ├── MySqlProvider.DateOnly.cs │ ├── MySqlProvider.DateTime.cs │ ├── MySqlProvider.Facade.cs │ ├── MySqlProvider.Math.cs │ ├── MySqlProvider.String.cs │ ├── MySqlProvider.TimeOnly.cs │ ├── MySqlProvider.TimeSpan.cs │ ├── MySqlProvider.cs │ ├── MySqlQuery.cs │ ├── MySqlQueryVisitor.cs │ ├── MySqlRepository.cs │ ├── MySqlTheaCommand.cs │ ├── MySqlTheaConnection.cs │ ├── MySqlTheaDataReader.cs │ ├── MySqlTheaTransaction.cs │ ├── MySqlUpdate.cs │ ├── MySqlUpdateVisitor.cs │ ├── MySqlUpdated.cs │ ├── README.md │ ├── Trolley.MySqlConnector.csproj │ └── key.snk ├── Trolley.PostgreSql │ ├── PostgreSqlContinuedCreate.cs │ ├── PostgreSqlContinuedDelete.cs │ ├── PostgreSqlContinuedUpdate.cs │ ├── PostgreSqlCreate.cs │ ├── PostgreSqlCreateVisitor.cs │ ├── PostgreSqlCreated.cs │ ├── PostgreSqlDelete.cs │ ├── PostgreSqlDeleteVisitor.cs │ ├── PostgreSqlDeleted.cs │ ├── PostgreSqlDistinctOnQuery.cs │ ├── PostgreSqlFromCommand.cs │ ├── PostgreSqlGroupingCommand.cs │ ├── PostgreSqlGroupingQuery.cs │ ├── PostgreSqlIncludableQuery.cs │ ├── PostgreSqlMultipleQuery.cs │ ├── PostgreSqlProvider.DateOnly.cs │ ├── PostgreSqlProvider.DateTime.cs │ ├── PostgreSqlProvider.Facade.cs │ ├── PostgreSqlProvider.IEnumerable.cs │ ├── PostgreSqlProvider.Math.cs │ ├── PostgreSqlProvider.String.cs │ ├── PostgreSqlProvider.TimeOnly.cs │ ├── PostgreSqlProvider.TimeSpan.cs │ ├── PostgreSqlProvider.cs │ ├── PostgreSqlQuery.cs │ ├── PostgreSqlQueryVisitor.cs │ ├── PostgreSqlRepository.cs │ ├── PostgreSqlTheaCommand.cs │ ├── PostgreSqlTheaConnection.cs │ ├── PostgreSqlTheaDataReader.cs │ ├── PostgreSqlTheaTransaction.cs │ ├── PostgreSqlUpdate.cs │ ├── PostgreSqlUpdateVisitor.cs │ ├── PostgreSqlUpdated.cs │ ├── README.md │ ├── Trolley.PostgreSql.csproj │ └── key.snk ├── Trolley.SqlServer │ ├── README.md │ ├── SqlServerContinuedCreate.cs │ ├── SqlServerContinuedDelete.cs │ ├── SqlServerContinuedUpdate.cs │ ├── SqlServerCreate.cs │ ├── SqlServerCreateVisitor.cs │ ├── SqlServerCreated.cs │ ├── SqlServerDelete.cs │ ├── SqlServerDeleteVisitor.cs │ ├── SqlServerDeleted.cs │ ├── SqlServerFromCommand.cs │ ├── SqlServerFromContinuedCreate.cs │ ├── SqlServerGroupingCommand.cs │ ├── SqlServerMultipleQuery.cs │ ├── SqlServerProvider.DateOnly.cs │ ├── SqlServerProvider.DateTime.cs │ ├── SqlServerProvider.Facade.cs │ ├── SqlServerProvider.Math.cs │ ├── SqlServerProvider.String.cs │ ├── SqlServerProvider.TimeOnly.cs │ ├── SqlServerProvider.TimeSpan.cs │ ├── SqlServerProvider.cs │ ├── SqlServerQueryVisitor.cs │ ├── SqlServerRepository.cs │ ├── SqlServerTheaCommand.cs │ ├── SqlServerTheaConnection.cs │ ├── SqlServerTheaDataReader.cs │ ├── SqlServerTheaTransaction.cs │ ├── SqlServerUpdate.cs │ ├── SqlServerUpdateVisitor.cs │ ├── SqlServerUpdated.cs │ ├── Trolley.SqlServer.csproj │ └── key.snk ├── Trolley.T4 │ ├── App.config │ ├── Attributes.cs │ ├── DbEntitries.ttinclude │ ├── Manager.ttinclude │ ├── MySql │ │ ├── Entities.tt │ │ ├── Entity.tt │ │ ├── ModelConfiguration.tt │ │ ├── ModelConfigurations.tt │ │ └── MySqlProvider.ttinclude │ ├── Plugins │ │ ├── MySql │ │ │ ├── MySql.Data.dll │ │ │ ├── ZstdNet.dll │ │ │ ├── comerr64.dll │ │ │ ├── gssapi64.dll │ │ │ ├── k5sprt64.dll │ │ │ ├── krb5_64.dll │ │ │ └── krbcc64.dll │ │ ├── MySqlConnector.dll │ │ ├── Npgsql.dll │ │ └── System.Data.SqlClient.dll │ ├── PostgreSql │ │ ├── Entities.tt │ │ ├── Entity.tt │ │ ├── ModelConfiguration.tt │ │ ├── ModelConfigurations.tt │ │ └── PostgreSqlProvider.ttinclude │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── SqlServer │ │ ├── Entities.tt │ │ ├── Entity.tt │ │ ├── ModelConfiguration.tt │ │ ├── ModelConfigurations.tt │ │ └── SqlServerProvider.ttinclude │ ├── Trolley.T4.csproj │ ├── Trolley │ │ ├── Create.tt │ │ ├── FromCommand.tt │ │ ├── FromQuery.tt │ │ ├── GroupingCommand.tt │ │ ├── GroupingQuery.tt │ │ ├── ICreate.tt │ │ ├── IFromCommand.tt │ │ ├── IFromQuery.tt │ │ ├── IGroupingCommand.tt │ │ ├── IGroupingQuery.tt │ │ ├── IIncludableQuery.tt │ │ ├── IMultiGroupingQuery.tt │ │ ├── IMultiIncludableQuery.tt │ │ ├── IMultiQuery.tt │ │ ├── IMultipleQuery.tt │ │ ├── IMySqlFromCommand.tt │ │ ├── IMySqlGroupingCommand.tt │ │ ├── IPostgreSqlDistinctOnQuery.tt │ │ ├── IPostgreSqlFromCommand.tt │ │ ├── IPostgreSqlGroupingCommand.tt │ │ ├── IPostgreSqlGroupingQuery.tt │ │ ├── IPostgreSqlIncludableQuery.tt │ │ ├── IPostgreSqlQuery.tt │ │ ├── IPostgreSqlRepository.tt │ │ ├── IQuery.tt │ │ ├── IRepository.tt │ │ ├── ISqlServerFromCommand.tt │ │ ├── IUpdate.tt │ │ ├── IUpdateJoin.tt │ │ ├── IncludableQuery.tt │ │ ├── MultiGroupingQuery.tt │ │ ├── MultiIncludableQuery.tt │ │ ├── MultiQuery`.tt │ │ ├── MultipleQuery.tt │ │ ├── MySqlFromCommand.tt │ │ ├── MySqlGroupingCommand.tt │ │ ├── OrderByBuilder.tt │ │ ├── PostgreSqlDistinctOnQuery.tt │ │ ├── PostgreSqlFromCommand.tt │ │ ├── PostgreSqlGroupingCommand.tt │ │ ├── PostgreSqlGroupingQuery.tt │ │ ├── PostgreSqlIncludableQuery.tt │ │ ├── PostgreSqlQuery.tt │ │ ├── PostgreSqlRepository.tt │ │ ├── PredicateBuilder.tt │ │ ├── Query`.tt │ │ ├── SqlServerFromCommand.tt │ │ └── Update.tt │ └── packages.config ├── Trolley │ ├── DbContext.cs │ ├── DbInterceptors.cs │ ├── DeferredExpr.cs │ ├── Dialect │ │ ├── MySqlConnector │ │ │ ├── IMySqlContinuedCreate.cs │ │ │ ├── IMySqlContinuedUpdate.cs │ │ │ ├── IMySqlCreate.cs │ │ │ ├── IMySqlCreateDuplicateKeyUpdate.cs │ │ │ ├── IMySqlCreated.cs │ │ │ ├── IMySqlDelete.cs │ │ │ ├── IMySqlDeleted.cs │ │ │ ├── IMySqlFromCommand.cs │ │ │ ├── IMySqlGroupingCommand.cs │ │ │ ├── IMySqlRepository.cs │ │ │ ├── IMySqlUpdate.cs │ │ │ └── MySqlExtensions.cs │ │ ├── PostgreSql │ │ │ ├── IPostgreSqlContinuedCreate.cs │ │ │ ├── IPostgreSqlContinuedUpdate.cs │ │ │ ├── IPostgreSqlCreate.cs │ │ │ ├── IPostgreSqlCreateConflictDoUpdate.cs │ │ │ ├── IPostgreSqlCreated.cs │ │ │ ├── IPostgreSqlDelete.cs │ │ │ ├── IPostgreSqlDeleted.cs │ │ │ ├── IPostgreSqlDistinctOnQuery.cs │ │ │ ├── IPostgreSqlFromCommand.cs │ │ │ ├── IPostgreSqlGroupingCommand.cs │ │ │ ├── IPostgreSqlGroupingQuery.cs │ │ │ ├── IPostgreSqlIncludableQuery.cs │ │ │ ├── IPostgreSqlMultiQuery.cs │ │ │ ├── IPostgreSqlQuery.cs │ │ │ ├── IPostgreSqlRepository.cs │ │ │ ├── IPostgreSqlUpdate.cs │ │ │ ├── IPostgreSqlUpdated.cs │ │ │ └── PostgreSqlExtensions.cs │ │ └── SqlServer │ │ │ ├── ISqlServerContinuedCreate.cs │ │ │ ├── ISqlServerContinuedUpdate.cs │ │ │ ├── ISqlServerCreate.cs │ │ │ ├── ISqlServerCreated.cs │ │ │ ├── ISqlServerDelete.cs │ │ │ ├── ISqlServerDeleted.cs │ │ │ ├── ISqlServerFromCommand.cs │ │ │ ├── ISqlServerFromContinuedCreate.cs │ │ │ ├── ISqlServerGroupingCommand.cs │ │ │ ├── ISqlServerOutput.cs │ │ │ ├── ISqlServerRepository.cs │ │ │ ├── ISqlServerUpdate.cs │ │ │ ├── ISqlServerUpdated.cs │ │ │ └── SqlServerExtensions.cs │ ├── Extensions.cs │ ├── FasterEvaluator.cs │ ├── Ifaces │ │ ├── ActionMode.cs │ │ ├── IAggregateSelect.cs │ │ ├── ICreate.cs │ │ ├── ICreateVistor.cs │ │ ├── IDelete.cs │ │ ├── IDeleteVisitor.cs │ │ ├── IFromCommand.cs │ │ ├── IFromQuery.cs │ │ ├── IGroupingCommand.cs │ │ ├── IGroupingQuery.cs │ │ ├── IIncludableQuery.cs │ │ ├── IMultiGroupingQuery.cs │ │ ├── IMultiIncludableQuery.cs │ │ ├── IMultiQuery.cs │ │ ├── IMultiQueryReader.cs │ │ ├── IMultipleQuery.cs │ │ ├── IOrmDbFactory.cs │ │ ├── IOrmProvider.cs │ │ ├── IPagedList.cs │ │ ├── IQuery.cs │ │ ├── IQueryVisitor.cs │ │ ├── IRepository.cs │ │ ├── ISqlVisitor.cs │ │ ├── ITheaCommand.cs │ │ ├── ITheaConnection.cs │ │ ├── ITheaDataReader.cs │ │ ├── ITheaTransaction.cs │ │ ├── ITypeHandler.cs │ │ ├── IUpdate.cs │ │ ├── IUpdateJoin.cs │ │ └── IUpdateVisitor.cs │ ├── Impls │ │ ├── BaseOrmProvider.Facade.cs │ │ ├── BaseOrmProvider.cs │ │ ├── CommandSegment.cs │ │ ├── Create.cs │ │ ├── CreateVisitor.cs │ │ ├── Delete.cs │ │ ├── DeleteVisitor.cs │ │ ├── FromCommand.cs │ │ ├── FromQuery.cs │ │ ├── GroupingCommand.cs │ │ ├── GroupingQuery.cs │ │ ├── IncludableQuery.cs │ │ ├── Internal │ │ │ ├── CreateInternal.cs │ │ │ └── QueryInternal.cs │ │ ├── MultiGroupingQuery.cs │ │ ├── MultiIncludableQuery.cs │ │ ├── MultiQuery.cs │ │ ├── MultiQueryReader.cs │ │ ├── MultiQuery`.cs │ │ ├── MultipleQuery.cs │ │ ├── OrmDbFactory.cs │ │ ├── PagedList.cs │ │ ├── Query.cs │ │ ├── QueryVisitor.cs │ │ ├── Query`.cs │ │ ├── Repository.cs │ │ ├── SqlVisitor.cs │ │ ├── Update.cs │ │ └── UpdateVisitor.cs │ ├── IsParameterVisitor.cs │ ├── Map │ │ ├── DbTableInfo.cs │ │ ├── DefaultModelMappingConfiguration.cs │ │ ├── EntityMap.cs │ │ ├── EntityMapProvider.cs │ │ ├── EntityTypeBuilder.cs │ │ ├── IEntityMapProvider.cs │ │ ├── IFieldMapHandler.cs │ │ ├── IModelMappingConfiguration.cs │ │ ├── MemberBuilder.cs │ │ ├── MemberMap.cs │ │ ├── ModelBuilder.cs │ │ └── Navigation.cs │ ├── OrderByBuilder.cs │ ├── OrmDbFactoryBuilder.cs │ ├── OrmDbFactoryOptions.cs │ ├── OrmExtensions.cs │ ├── PredicateBuilder.cs │ ├── Properties │ │ └── PublishProfiles │ │ │ └── FolderProfile.pubxml │ ├── README.md │ ├── ReplaceVisitors.cs │ ├── RepositoryHelper.cs │ ├── Sharding │ │ ├── ITableShardingConfiguration.cs │ │ ├── ITableShardingProvider.cs │ │ ├── TableShardingBuilder.cs │ │ ├── TableShardingInfo.cs │ │ └── TableShardingProvider.cs │ ├── ShardingTableType.cs │ ├── Sql.cs │ ├── SqlFieldSegment.cs │ ├── TableSegment.cs │ ├── TheaDatabase.cs │ ├── TheaDbParameterCollection.cs │ ├── Trolley.csproj │ ├── TypeHandlers │ │ ├── JsonTypeHandler.cs │ │ └── ToStringTypeHandler.cs │ └── key.snk └── nuget │ ├── clear.bat │ ├── pack.ps1 │ └── push.ps1 └── test ├── Trolley.Test.MySqlConnector ├── AllUnitTest.cs ├── DateOnlyUnitTest.cs ├── DateTimeUnitTest.cs ├── ExpressionUnitTest.cs ├── MethodCallUnitTest.cs ├── ModelMappingConfiguration.cs ├── Trolley.Test.MySqlConnector.csproj ├── UnitTest1.cs ├── UnitTest2.cs ├── UnitTest3.cs ├── UnitTest4.cs ├── UnitTest5.cs ├── UnitTest6.cs ├── UnitTest7.cs ├── WhereUnitTest.cs └── fengling.sql ├── Trolley.Test.PostgreSql ├── AllUnitTest.cs ├── DateOnlyUnitTest.cs ├── DateTimeUnitTest.cs ├── ExpressionUnitTest.cs ├── MethodCallUnitTest.cs ├── ModelConfiguration.cs ├── Trolley.Test.PostgreSql.csproj ├── UnitTest1.cs ├── UnitTest2.cs ├── UnitTest3.cs ├── UnitTest4.cs ├── UnitTest5.cs ├── UnitTest6.cs ├── UnitTest7.cs ├── WhereUnitTest.cs └── fengling.sql ├── Trolley.Test.SqlServer ├── AllUnitTest.cs ├── DateOnlyUnitTest.cs ├── DateTimeUnitTest.cs ├── ExpressionUnitTest.cs ├── MethodCallUnitTest.cs ├── ModelConfiguration.cs ├── Trolley.Test.SqlServer.csproj ├── UnitTest1.cs ├── UnitTest2.cs ├── UnitTest3.cs ├── UnitTest4.cs ├── UnitTest5.cs ├── UnitTest6.cs ├── UnitTest7.cs ├── WhereUnitTest.cs └── fengling.sql └── Trolley.Test ├── Entities1.cs ├── Entities2.cs ├── Extensions.cs ├── MySqlDatabaseGenerator.cs ├── ObjectId.cs ├── SqlServerDatabaseGenerator.cs ├── TableShardingConfiguration.cs ├── Trolley.Test.csproj ├── UnitTest1.cs └── UnitTestBase.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/Trolley.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/.vs/Trolley.sqlite -------------------------------------------------------------------------------- /.vs/Trolley/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/.vs/Trolley/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/README.md -------------------------------------------------------------------------------- /Trolley.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/Trolley.sln -------------------------------------------------------------------------------- /clear.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/clear.bat -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlContinuedCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlContinuedCreate.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlContinuedUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlContinuedUpdate.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlCreate.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlCreateVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlCreateVisitor.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlCreated.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlDelete.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlDeleteVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlDeleteVisitor.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlDeleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlDeleted.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlFromCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlFromCommand.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlGroupingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlGroupingCommand.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlMultipleQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlMultipleQuery.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlProvider.DateOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlProvider.DateOnly.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlProvider.DateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlProvider.DateTime.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlProvider.Facade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlProvider.Facade.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlProvider.Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlProvider.Math.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlProvider.String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlProvider.String.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlProvider.TimeOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlProvider.TimeOnly.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlProvider.TimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlProvider.TimeSpan.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlProvider.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlQuery.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlQueryVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlQueryVisitor.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlRepository.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlTheaCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlTheaCommand.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlTheaConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlTheaConnection.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlTheaDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlTheaDataReader.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlTheaTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlTheaTransaction.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlUpdate.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlUpdateVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlUpdateVisitor.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/MySqlUpdated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/MySqlUpdated.cs -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/README.md -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/Trolley.MySqlConnector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/Trolley.MySqlConnector.csproj -------------------------------------------------------------------------------- /src/Trolley.MySqlConnector/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.MySqlConnector/key.snk -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlContinuedCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlContinuedCreate.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlContinuedDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlContinuedDelete.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlContinuedUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlContinuedUpdate.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlCreate.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlCreateVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlCreateVisitor.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlCreated.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlDelete.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlDeleteVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlDeleteVisitor.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlDeleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlDeleted.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlDistinctOnQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlDistinctOnQuery.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlFromCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlFromCommand.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlGroupingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlGroupingCommand.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlGroupingQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlGroupingQuery.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlIncludableQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlIncludableQuery.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlMultipleQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlMultipleQuery.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlProvider.DateOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlProvider.DateOnly.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlProvider.DateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlProvider.DateTime.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlProvider.Facade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlProvider.Facade.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlProvider.IEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlProvider.IEnumerable.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlProvider.Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlProvider.Math.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlProvider.String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlProvider.String.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlProvider.TimeOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlProvider.TimeOnly.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlProvider.TimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlProvider.TimeSpan.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlProvider.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlQuery.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlQueryVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlQueryVisitor.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlRepository.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlTheaCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlTheaCommand.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlTheaConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlTheaConnection.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlTheaDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlTheaDataReader.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlTheaTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlTheaTransaction.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlUpdate.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlUpdateVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlUpdateVisitor.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/PostgreSqlUpdated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/PostgreSqlUpdated.cs -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/README.md -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/Trolley.PostgreSql.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/Trolley.PostgreSql.csproj -------------------------------------------------------------------------------- /src/Trolley.PostgreSql/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.PostgreSql/key.snk -------------------------------------------------------------------------------- /src/Trolley.SqlServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/README.md -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerContinuedCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerContinuedCreate.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerContinuedDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerContinuedDelete.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerContinuedUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerContinuedUpdate.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerCreate.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerCreateVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerCreateVisitor.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerCreated.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerDelete.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerDeleteVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerDeleteVisitor.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerDeleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerDeleted.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerFromCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerFromCommand.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerFromContinuedCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerFromContinuedCreate.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerGroupingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerGroupingCommand.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerMultipleQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerMultipleQuery.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerProvider.DateOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerProvider.DateOnly.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerProvider.DateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerProvider.DateTime.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerProvider.Facade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerProvider.Facade.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerProvider.Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerProvider.Math.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerProvider.String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerProvider.String.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerProvider.TimeOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerProvider.TimeOnly.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerProvider.TimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerProvider.TimeSpan.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerProvider.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerQueryVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerQueryVisitor.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerRepository.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerTheaCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerTheaCommand.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerTheaConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerTheaConnection.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerTheaDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerTheaDataReader.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerTheaTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerTheaTransaction.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerUpdate.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerUpdateVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerUpdateVisitor.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/SqlServerUpdated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/SqlServerUpdated.cs -------------------------------------------------------------------------------- /src/Trolley.SqlServer/Trolley.SqlServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/Trolley.SqlServer.csproj -------------------------------------------------------------------------------- /src/Trolley.SqlServer/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.SqlServer/key.snk -------------------------------------------------------------------------------- /src/Trolley.T4/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/App.config -------------------------------------------------------------------------------- /src/Trolley.T4/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Attributes.cs -------------------------------------------------------------------------------- /src/Trolley.T4/DbEntitries.ttinclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/DbEntitries.ttinclude -------------------------------------------------------------------------------- /src/Trolley.T4/Manager.ttinclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Manager.ttinclude -------------------------------------------------------------------------------- /src/Trolley.T4/MySql/Entities.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/MySql/Entities.tt -------------------------------------------------------------------------------- /src/Trolley.T4/MySql/Entity.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/MySql/Entity.tt -------------------------------------------------------------------------------- /src/Trolley.T4/MySql/ModelConfiguration.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/MySql/ModelConfiguration.tt -------------------------------------------------------------------------------- /src/Trolley.T4/MySql/ModelConfigurations.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/MySql/ModelConfigurations.tt -------------------------------------------------------------------------------- /src/Trolley.T4/MySql/MySqlProvider.ttinclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/MySql/MySqlProvider.ttinclude -------------------------------------------------------------------------------- /src/Trolley.T4/Plugins/MySql/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Plugins/MySql/MySql.Data.dll -------------------------------------------------------------------------------- /src/Trolley.T4/Plugins/MySql/ZstdNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Plugins/MySql/ZstdNet.dll -------------------------------------------------------------------------------- /src/Trolley.T4/Plugins/MySql/comerr64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Plugins/MySql/comerr64.dll -------------------------------------------------------------------------------- /src/Trolley.T4/Plugins/MySql/gssapi64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Plugins/MySql/gssapi64.dll -------------------------------------------------------------------------------- /src/Trolley.T4/Plugins/MySql/k5sprt64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Plugins/MySql/k5sprt64.dll -------------------------------------------------------------------------------- /src/Trolley.T4/Plugins/MySql/krb5_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Plugins/MySql/krb5_64.dll -------------------------------------------------------------------------------- /src/Trolley.T4/Plugins/MySql/krbcc64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Plugins/MySql/krbcc64.dll -------------------------------------------------------------------------------- /src/Trolley.T4/Plugins/MySqlConnector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Plugins/MySqlConnector.dll -------------------------------------------------------------------------------- /src/Trolley.T4/Plugins/Npgsql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Plugins/Npgsql.dll -------------------------------------------------------------------------------- /src/Trolley.T4/Plugins/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Plugins/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /src/Trolley.T4/PostgreSql/Entities.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/PostgreSql/Entities.tt -------------------------------------------------------------------------------- /src/Trolley.T4/PostgreSql/Entity.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/PostgreSql/Entity.tt -------------------------------------------------------------------------------- /src/Trolley.T4/PostgreSql/ModelConfiguration.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/PostgreSql/ModelConfiguration.tt -------------------------------------------------------------------------------- /src/Trolley.T4/PostgreSql/ModelConfigurations.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/PostgreSql/ModelConfigurations.tt -------------------------------------------------------------------------------- /src/Trolley.T4/PostgreSql/PostgreSqlProvider.ttinclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/PostgreSql/PostgreSqlProvider.ttinclude -------------------------------------------------------------------------------- /src/Trolley.T4/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Trolley.T4/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Trolley.T4/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Trolley.T4/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Trolley.T4/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Trolley.T4/SqlServer/Entities.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/SqlServer/Entities.tt -------------------------------------------------------------------------------- /src/Trolley.T4/SqlServer/Entity.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/SqlServer/Entity.tt -------------------------------------------------------------------------------- /src/Trolley.T4/SqlServer/ModelConfiguration.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/SqlServer/ModelConfiguration.tt -------------------------------------------------------------------------------- /src/Trolley.T4/SqlServer/ModelConfigurations.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/SqlServer/ModelConfigurations.tt -------------------------------------------------------------------------------- /src/Trolley.T4/SqlServer/SqlServerProvider.ttinclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/SqlServer/SqlServerProvider.ttinclude -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley.T4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley.T4.csproj -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/Create.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/Create.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/FromCommand.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/FromCommand.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/FromQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/FromQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/GroupingCommand.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/GroupingCommand.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/GroupingQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/GroupingQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/ICreate.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/ICreate.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IFromCommand.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IFromCommand.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IFromQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IFromQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IGroupingCommand.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IGroupingCommand.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IGroupingQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IGroupingQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IIncludableQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IIncludableQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IMultiGroupingQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IMultiGroupingQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IMultiIncludableQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IMultiIncludableQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IMultiQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IMultiQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IMultipleQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IMultipleQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IMySqlFromCommand.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IMySqlFromCommand.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IMySqlGroupingCommand.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IMySqlGroupingCommand.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IPostgreSqlDistinctOnQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IPostgreSqlDistinctOnQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IPostgreSqlFromCommand.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IPostgreSqlFromCommand.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IPostgreSqlGroupingCommand.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IPostgreSqlGroupingCommand.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IPostgreSqlGroupingQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IPostgreSqlGroupingQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IPostgreSqlIncludableQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IPostgreSqlIncludableQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IPostgreSqlQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IPostgreSqlQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IPostgreSqlRepository.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IPostgreSqlRepository.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IRepository.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IRepository.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/ISqlServerFromCommand.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/ISqlServerFromCommand.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IUpdate.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IUpdate.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IUpdateJoin.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IUpdateJoin.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/IncludableQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/IncludableQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/MultiGroupingQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/MultiGroupingQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/MultiIncludableQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/MultiIncludableQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/MultiQuery`.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/MultiQuery`.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/MultipleQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/MultipleQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/MySqlFromCommand.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/MySqlFromCommand.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/MySqlGroupingCommand.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/MySqlGroupingCommand.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/OrderByBuilder.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/OrderByBuilder.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/PostgreSqlDistinctOnQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/PostgreSqlDistinctOnQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/PostgreSqlFromCommand.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/PostgreSqlFromCommand.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/PostgreSqlGroupingCommand.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/PostgreSqlGroupingCommand.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/PostgreSqlGroupingQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/PostgreSqlGroupingQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/PostgreSqlIncludableQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/PostgreSqlIncludableQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/PostgreSqlQuery.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/PostgreSqlQuery.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/PostgreSqlRepository.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/PostgreSqlRepository.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/PredicateBuilder.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/PredicateBuilder.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/Query`.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/Query`.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/SqlServerFromCommand.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/SqlServerFromCommand.tt -------------------------------------------------------------------------------- /src/Trolley.T4/Trolley/Update.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/Trolley/Update.tt -------------------------------------------------------------------------------- /src/Trolley.T4/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley.T4/packages.config -------------------------------------------------------------------------------- /src/Trolley/DbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/DbContext.cs -------------------------------------------------------------------------------- /src/Trolley/DbInterceptors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/DbInterceptors.cs -------------------------------------------------------------------------------- /src/Trolley/DeferredExpr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/DeferredExpr.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/MySqlConnector/IMySqlContinuedCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/MySqlConnector/IMySqlContinuedCreate.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/MySqlConnector/IMySqlContinuedUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/MySqlConnector/IMySqlContinuedUpdate.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/MySqlConnector/IMySqlCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/MySqlConnector/IMySqlCreate.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/MySqlConnector/IMySqlCreateDuplicateKeyUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/MySqlConnector/IMySqlCreateDuplicateKeyUpdate.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/MySqlConnector/IMySqlCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/MySqlConnector/IMySqlCreated.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/MySqlConnector/IMySqlDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/MySqlConnector/IMySqlDelete.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/MySqlConnector/IMySqlDeleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/MySqlConnector/IMySqlDeleted.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/MySqlConnector/IMySqlFromCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/MySqlConnector/IMySqlFromCommand.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/MySqlConnector/IMySqlGroupingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/MySqlConnector/IMySqlGroupingCommand.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/MySqlConnector/IMySqlRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/MySqlConnector/IMySqlRepository.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/MySqlConnector/IMySqlUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/MySqlConnector/IMySqlUpdate.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/MySqlConnector/MySqlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/MySqlConnector/MySqlExtensions.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/PostgreSql/IPostgreSqlContinuedCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/PostgreSql/IPostgreSqlContinuedCreate.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/PostgreSql/IPostgreSqlContinuedUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/PostgreSql/IPostgreSqlContinuedUpdate.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/PostgreSql/IPostgreSqlCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/PostgreSql/IPostgreSqlCreate.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/PostgreSql/IPostgreSqlCreateConflictDoUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/PostgreSql/IPostgreSqlCreateConflictDoUpdate.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/PostgreSql/IPostgreSqlCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/PostgreSql/IPostgreSqlCreated.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/PostgreSql/IPostgreSqlDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/PostgreSql/IPostgreSqlDelete.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/PostgreSql/IPostgreSqlDeleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/PostgreSql/IPostgreSqlDeleted.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/PostgreSql/IPostgreSqlDistinctOnQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/PostgreSql/IPostgreSqlDistinctOnQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/PostgreSql/IPostgreSqlFromCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/PostgreSql/IPostgreSqlFromCommand.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/PostgreSql/IPostgreSqlGroupingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/PostgreSql/IPostgreSqlGroupingCommand.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/PostgreSql/IPostgreSqlGroupingQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/PostgreSql/IPostgreSqlGroupingQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/PostgreSql/IPostgreSqlIncludableQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/PostgreSql/IPostgreSqlIncludableQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/PostgreSql/IPostgreSqlMultiQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/PostgreSql/IPostgreSqlMultiQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/PostgreSql/IPostgreSqlQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/PostgreSql/IPostgreSqlQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/PostgreSql/IPostgreSqlRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/PostgreSql/IPostgreSqlRepository.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/PostgreSql/IPostgreSqlUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/PostgreSql/IPostgreSqlUpdate.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/PostgreSql/IPostgreSqlUpdated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/PostgreSql/IPostgreSqlUpdated.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/PostgreSql/PostgreSqlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/PostgreSql/PostgreSqlExtensions.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/SqlServer/ISqlServerContinuedCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/SqlServer/ISqlServerContinuedCreate.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/SqlServer/ISqlServerContinuedUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/SqlServer/ISqlServerContinuedUpdate.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/SqlServer/ISqlServerCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/SqlServer/ISqlServerCreate.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/SqlServer/ISqlServerCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/SqlServer/ISqlServerCreated.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/SqlServer/ISqlServerDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/SqlServer/ISqlServerDelete.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/SqlServer/ISqlServerDeleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/SqlServer/ISqlServerDeleted.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/SqlServer/ISqlServerFromCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/SqlServer/ISqlServerFromCommand.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/SqlServer/ISqlServerFromContinuedCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/SqlServer/ISqlServerFromContinuedCreate.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/SqlServer/ISqlServerGroupingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/SqlServer/ISqlServerGroupingCommand.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/SqlServer/ISqlServerOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/SqlServer/ISqlServerOutput.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/SqlServer/ISqlServerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/SqlServer/ISqlServerRepository.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/SqlServer/ISqlServerUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/SqlServer/ISqlServerUpdate.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/SqlServer/ISqlServerUpdated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/SqlServer/ISqlServerUpdated.cs -------------------------------------------------------------------------------- /src/Trolley/Dialect/SqlServer/SqlServerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Dialect/SqlServer/SqlServerExtensions.cs -------------------------------------------------------------------------------- /src/Trolley/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Extensions.cs -------------------------------------------------------------------------------- /src/Trolley/FasterEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/FasterEvaluator.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/ActionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/ActionMode.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IAggregateSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IAggregateSelect.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/ICreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/ICreate.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/ICreateVistor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/ICreateVistor.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IDelete.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IDeleteVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IDeleteVisitor.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IFromCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IFromCommand.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IFromQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IFromQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IGroupingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IGroupingCommand.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IGroupingQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IGroupingQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IIncludableQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IIncludableQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IMultiGroupingQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IMultiGroupingQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IMultiIncludableQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IMultiIncludableQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IMultiQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IMultiQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IMultiQueryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IMultiQueryReader.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IMultipleQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IMultipleQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IOrmDbFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IOrmDbFactory.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IOrmProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IOrmProvider.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IPagedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IPagedList.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IQueryVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IQueryVisitor.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IRepository.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/ISqlVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/ISqlVisitor.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/ITheaCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/ITheaCommand.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/ITheaConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/ITheaConnection.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/ITheaDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/ITheaDataReader.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/ITheaTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/ITheaTransaction.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/ITypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/ITypeHandler.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IUpdate.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IUpdateJoin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IUpdateJoin.cs -------------------------------------------------------------------------------- /src/Trolley/Ifaces/IUpdateVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Ifaces/IUpdateVisitor.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/BaseOrmProvider.Facade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/BaseOrmProvider.Facade.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/BaseOrmProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/BaseOrmProvider.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/CommandSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/CommandSegment.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/Create.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/CreateVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/CreateVisitor.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/Delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/Delete.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/DeleteVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/DeleteVisitor.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/FromCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/FromCommand.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/FromQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/FromQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/GroupingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/GroupingCommand.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/GroupingQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/GroupingQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/IncludableQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/IncludableQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/Internal/CreateInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/Internal/CreateInternal.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/Internal/QueryInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/Internal/QueryInternal.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/MultiGroupingQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/MultiGroupingQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/MultiIncludableQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/MultiIncludableQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/MultiQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/MultiQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/MultiQueryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/MultiQueryReader.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/MultiQuery`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/MultiQuery`.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/MultipleQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/MultipleQuery.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/OrmDbFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/OrmDbFactory.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/PagedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/PagedList.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/Query.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/QueryVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/QueryVisitor.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/Query`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/Query`.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/Repository.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/SqlVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/SqlVisitor.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/Update.cs -------------------------------------------------------------------------------- /src/Trolley/Impls/UpdateVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Impls/UpdateVisitor.cs -------------------------------------------------------------------------------- /src/Trolley/IsParameterVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/IsParameterVisitor.cs -------------------------------------------------------------------------------- /src/Trolley/Map/DbTableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Map/DbTableInfo.cs -------------------------------------------------------------------------------- /src/Trolley/Map/DefaultModelMappingConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Map/DefaultModelMappingConfiguration.cs -------------------------------------------------------------------------------- /src/Trolley/Map/EntityMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Map/EntityMap.cs -------------------------------------------------------------------------------- /src/Trolley/Map/EntityMapProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Map/EntityMapProvider.cs -------------------------------------------------------------------------------- /src/Trolley/Map/EntityTypeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Map/EntityTypeBuilder.cs -------------------------------------------------------------------------------- /src/Trolley/Map/IEntityMapProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Map/IEntityMapProvider.cs -------------------------------------------------------------------------------- /src/Trolley/Map/IFieldMapHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Map/IFieldMapHandler.cs -------------------------------------------------------------------------------- /src/Trolley/Map/IModelMappingConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Map/IModelMappingConfiguration.cs -------------------------------------------------------------------------------- /src/Trolley/Map/MemberBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Map/MemberBuilder.cs -------------------------------------------------------------------------------- /src/Trolley/Map/MemberMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Map/MemberMap.cs -------------------------------------------------------------------------------- /src/Trolley/Map/ModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Map/ModelBuilder.cs -------------------------------------------------------------------------------- /src/Trolley/Map/Navigation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Map/Navigation.cs -------------------------------------------------------------------------------- /src/Trolley/OrderByBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/OrderByBuilder.cs -------------------------------------------------------------------------------- /src/Trolley/OrmDbFactoryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/OrmDbFactoryBuilder.cs -------------------------------------------------------------------------------- /src/Trolley/OrmDbFactoryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/OrmDbFactoryOptions.cs -------------------------------------------------------------------------------- /src/Trolley/OrmExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/OrmExtensions.cs -------------------------------------------------------------------------------- /src/Trolley/PredicateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/PredicateBuilder.cs -------------------------------------------------------------------------------- /src/Trolley/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /src/Trolley/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/README.md -------------------------------------------------------------------------------- /src/Trolley/ReplaceVisitors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/ReplaceVisitors.cs -------------------------------------------------------------------------------- /src/Trolley/RepositoryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/RepositoryHelper.cs -------------------------------------------------------------------------------- /src/Trolley/Sharding/ITableShardingConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Sharding/ITableShardingConfiguration.cs -------------------------------------------------------------------------------- /src/Trolley/Sharding/ITableShardingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Sharding/ITableShardingProvider.cs -------------------------------------------------------------------------------- /src/Trolley/Sharding/TableShardingBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Sharding/TableShardingBuilder.cs -------------------------------------------------------------------------------- /src/Trolley/Sharding/TableShardingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Sharding/TableShardingInfo.cs -------------------------------------------------------------------------------- /src/Trolley/Sharding/TableShardingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Sharding/TableShardingProvider.cs -------------------------------------------------------------------------------- /src/Trolley/ShardingTableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/ShardingTableType.cs -------------------------------------------------------------------------------- /src/Trolley/Sql.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Sql.cs -------------------------------------------------------------------------------- /src/Trolley/SqlFieldSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/SqlFieldSegment.cs -------------------------------------------------------------------------------- /src/Trolley/TableSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/TableSegment.cs -------------------------------------------------------------------------------- /src/Trolley/TheaDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/TheaDatabase.cs -------------------------------------------------------------------------------- /src/Trolley/TheaDbParameterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/TheaDbParameterCollection.cs -------------------------------------------------------------------------------- /src/Trolley/Trolley.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/Trolley.csproj -------------------------------------------------------------------------------- /src/Trolley/TypeHandlers/JsonTypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/TypeHandlers/JsonTypeHandler.cs -------------------------------------------------------------------------------- /src/Trolley/TypeHandlers/ToStringTypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/TypeHandlers/ToStringTypeHandler.cs -------------------------------------------------------------------------------- /src/Trolley/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/Trolley/key.snk -------------------------------------------------------------------------------- /src/nuget/clear.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/nuget/clear.bat -------------------------------------------------------------------------------- /src/nuget/pack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/nuget/pack.ps1 -------------------------------------------------------------------------------- /src/nuget/push.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/src/nuget/push.ps1 -------------------------------------------------------------------------------- /test/Trolley.Test.MySqlConnector/AllUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.MySqlConnector/AllUnitTest.cs -------------------------------------------------------------------------------- /test/Trolley.Test.MySqlConnector/DateOnlyUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.MySqlConnector/DateOnlyUnitTest.cs -------------------------------------------------------------------------------- /test/Trolley.Test.MySqlConnector/DateTimeUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.MySqlConnector/DateTimeUnitTest.cs -------------------------------------------------------------------------------- /test/Trolley.Test.MySqlConnector/ExpressionUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.MySqlConnector/ExpressionUnitTest.cs -------------------------------------------------------------------------------- /test/Trolley.Test.MySqlConnector/MethodCallUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.MySqlConnector/MethodCallUnitTest.cs -------------------------------------------------------------------------------- /test/Trolley.Test.MySqlConnector/ModelMappingConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.MySqlConnector/ModelMappingConfiguration.cs -------------------------------------------------------------------------------- /test/Trolley.Test.MySqlConnector/Trolley.Test.MySqlConnector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.MySqlConnector/Trolley.Test.MySqlConnector.csproj -------------------------------------------------------------------------------- /test/Trolley.Test.MySqlConnector/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.MySqlConnector/UnitTest1.cs -------------------------------------------------------------------------------- /test/Trolley.Test.MySqlConnector/UnitTest2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.MySqlConnector/UnitTest2.cs -------------------------------------------------------------------------------- /test/Trolley.Test.MySqlConnector/UnitTest3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.MySqlConnector/UnitTest3.cs -------------------------------------------------------------------------------- /test/Trolley.Test.MySqlConnector/UnitTest4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.MySqlConnector/UnitTest4.cs -------------------------------------------------------------------------------- /test/Trolley.Test.MySqlConnector/UnitTest5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.MySqlConnector/UnitTest5.cs -------------------------------------------------------------------------------- /test/Trolley.Test.MySqlConnector/UnitTest6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.MySqlConnector/UnitTest6.cs -------------------------------------------------------------------------------- /test/Trolley.Test.MySqlConnector/UnitTest7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.MySqlConnector/UnitTest7.cs -------------------------------------------------------------------------------- /test/Trolley.Test.MySqlConnector/WhereUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.MySqlConnector/WhereUnitTest.cs -------------------------------------------------------------------------------- /test/Trolley.Test.MySqlConnector/fengling.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.MySqlConnector/fengling.sql -------------------------------------------------------------------------------- /test/Trolley.Test.PostgreSql/AllUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.PostgreSql/AllUnitTest.cs -------------------------------------------------------------------------------- /test/Trolley.Test.PostgreSql/DateOnlyUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.PostgreSql/DateOnlyUnitTest.cs -------------------------------------------------------------------------------- /test/Trolley.Test.PostgreSql/DateTimeUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.PostgreSql/DateTimeUnitTest.cs -------------------------------------------------------------------------------- /test/Trolley.Test.PostgreSql/ExpressionUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.PostgreSql/ExpressionUnitTest.cs -------------------------------------------------------------------------------- /test/Trolley.Test.PostgreSql/MethodCallUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.PostgreSql/MethodCallUnitTest.cs -------------------------------------------------------------------------------- /test/Trolley.Test.PostgreSql/ModelConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.PostgreSql/ModelConfiguration.cs -------------------------------------------------------------------------------- /test/Trolley.Test.PostgreSql/Trolley.Test.PostgreSql.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.PostgreSql/Trolley.Test.PostgreSql.csproj -------------------------------------------------------------------------------- /test/Trolley.Test.PostgreSql/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.PostgreSql/UnitTest1.cs -------------------------------------------------------------------------------- /test/Trolley.Test.PostgreSql/UnitTest2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.PostgreSql/UnitTest2.cs -------------------------------------------------------------------------------- /test/Trolley.Test.PostgreSql/UnitTest3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.PostgreSql/UnitTest3.cs -------------------------------------------------------------------------------- /test/Trolley.Test.PostgreSql/UnitTest4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.PostgreSql/UnitTest4.cs -------------------------------------------------------------------------------- /test/Trolley.Test.PostgreSql/UnitTest5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.PostgreSql/UnitTest5.cs -------------------------------------------------------------------------------- /test/Trolley.Test.PostgreSql/UnitTest6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.PostgreSql/UnitTest6.cs -------------------------------------------------------------------------------- /test/Trolley.Test.PostgreSql/UnitTest7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.PostgreSql/UnitTest7.cs -------------------------------------------------------------------------------- /test/Trolley.Test.PostgreSql/WhereUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.PostgreSql/WhereUnitTest.cs -------------------------------------------------------------------------------- /test/Trolley.Test.PostgreSql/fengling.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.PostgreSql/fengling.sql -------------------------------------------------------------------------------- /test/Trolley.Test.SqlServer/AllUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.SqlServer/AllUnitTest.cs -------------------------------------------------------------------------------- /test/Trolley.Test.SqlServer/DateOnlyUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.SqlServer/DateOnlyUnitTest.cs -------------------------------------------------------------------------------- /test/Trolley.Test.SqlServer/DateTimeUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.SqlServer/DateTimeUnitTest.cs -------------------------------------------------------------------------------- /test/Trolley.Test.SqlServer/ExpressionUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.SqlServer/ExpressionUnitTest.cs -------------------------------------------------------------------------------- /test/Trolley.Test.SqlServer/MethodCallUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.SqlServer/MethodCallUnitTest.cs -------------------------------------------------------------------------------- /test/Trolley.Test.SqlServer/ModelConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.SqlServer/ModelConfiguration.cs -------------------------------------------------------------------------------- /test/Trolley.Test.SqlServer/Trolley.Test.SqlServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.SqlServer/Trolley.Test.SqlServer.csproj -------------------------------------------------------------------------------- /test/Trolley.Test.SqlServer/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.SqlServer/UnitTest1.cs -------------------------------------------------------------------------------- /test/Trolley.Test.SqlServer/UnitTest2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.SqlServer/UnitTest2.cs -------------------------------------------------------------------------------- /test/Trolley.Test.SqlServer/UnitTest3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.SqlServer/UnitTest3.cs -------------------------------------------------------------------------------- /test/Trolley.Test.SqlServer/UnitTest4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.SqlServer/UnitTest4.cs -------------------------------------------------------------------------------- /test/Trolley.Test.SqlServer/UnitTest5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.SqlServer/UnitTest5.cs -------------------------------------------------------------------------------- /test/Trolley.Test.SqlServer/UnitTest6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.SqlServer/UnitTest6.cs -------------------------------------------------------------------------------- /test/Trolley.Test.SqlServer/UnitTest7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.SqlServer/UnitTest7.cs -------------------------------------------------------------------------------- /test/Trolley.Test.SqlServer/WhereUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.SqlServer/WhereUnitTest.cs -------------------------------------------------------------------------------- /test/Trolley.Test.SqlServer/fengling.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test.SqlServer/fengling.sql -------------------------------------------------------------------------------- /test/Trolley.Test/Entities1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test/Entities1.cs -------------------------------------------------------------------------------- /test/Trolley.Test/Entities2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test/Entities2.cs -------------------------------------------------------------------------------- /test/Trolley.Test/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test/Extensions.cs -------------------------------------------------------------------------------- /test/Trolley.Test/MySqlDatabaseGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test/MySqlDatabaseGenerator.cs -------------------------------------------------------------------------------- /test/Trolley.Test/ObjectId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test/ObjectId.cs -------------------------------------------------------------------------------- /test/Trolley.Test/SqlServerDatabaseGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test/SqlServerDatabaseGenerator.cs -------------------------------------------------------------------------------- /test/Trolley.Test/TableShardingConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test/TableShardingConfiguration.cs -------------------------------------------------------------------------------- /test/Trolley.Test/Trolley.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test/Trolley.Test.csproj -------------------------------------------------------------------------------- /test/Trolley.Test/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test/UnitTest1.cs -------------------------------------------------------------------------------- /test/Trolley.Test/UnitTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafkevin/Trolley/HEAD/test/Trolley.Test/UnitTestBase.cs --------------------------------------------------------------------------------