├── .gitattributes ├── .gitignore ├── Dashing.Cli ├── Commands │ ├── AddWeave.cs │ ├── Migrate.cs │ ├── Script.cs │ ├── ScriptExtensions.cs │ └── Seed.cs ├── Dashing.Cli.csproj ├── Dashing.Tool.csproj ├── DatabaseMigrator.cs ├── DbProviderFactoryExtensions.cs ├── DbProviderFactoryFactory.cs ├── NullStatisticsProvider.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── ScriptGenerator.cs ├── Seeder.cs └── app.config ├── Dashing.CommandLine ├── AssemblyContext.cs ├── AssemblyResolution.cs ├── ColorContext.cs ├── ConsoleAnswerProvider.cs └── LogConfiguration.cs ├── Dashing.IntegrationTests ├── App.config ├── Dashing.IntegrationTests.csproj ├── Setup │ ├── Configuration.cs │ ├── DatabaseInitializer.cs │ ├── MySqlServerDatabase.cs │ ├── SessionDataGenerator.cs │ ├── SqlLiteConfiguration.cs │ ├── SqlServerDatabase.cs │ ├── SqlSessionCreatorExtensions.cs │ ├── TestDatabaseGenerator.cs │ └── TestSessionWrapper.cs ├── TestDomain │ ├── Blog.cs │ ├── Comment.cs │ ├── More │ │ ├── Bed.cs │ │ ├── Booking.cs │ │ ├── Question.cs │ │ ├── QuestionResponse.cs │ │ ├── Questionnaire.cs │ │ ├── QuestionnaireResponse.cs │ │ ├── Room.cs │ │ └── RoomSlot.cs │ ├── Post.cs │ ├── PostTag.cs │ ├── Tag.cs │ ├── User.cs │ └── Versioned │ │ ├── NonVersioned │ │ ├── NonVersionedConfiguration.cs │ │ └── VersionedEntity.cs │ │ ├── VersionedConfiguration.cs │ │ └── VersionedEntity.cs ├── Tests │ ├── AnyTests.cs │ ├── AsyncTests.cs │ ├── CUDTests.cs │ ├── CollectionTests.cs │ ├── DapperWrapperTests.cs │ ├── EnumeratingTests.cs │ ├── FetchTests.cs │ ├── ForUpdateTests.cs │ ├── OuterJoinDisjunctionTransformerTests.cs │ ├── ProjectionTests.cs │ ├── SelectTests.cs │ ├── TransactionTests.cs │ └── dash │ │ └── VersionedEntityTests.cs └── packages.config ├── Dashing.PerformanceTests ├── App.config ├── Dashing.PerformanceTests.csproj ├── Domain │ ├── Blog.cs │ ├── Comment.cs │ ├── Post.cs │ ├── PostTag.cs │ ├── Tag.cs │ └── User.cs ├── Program.cs ├── Providers.cs ├── Test.cs └── Tests │ ├── Dashing │ └── DashingConfiguration.cs │ ├── EntityFramework │ └── EfContext.cs │ └── NHibernate │ └── NH.cs ├── Dashing.Tests ├── App.config ├── CodeGeneration │ ├── ProjectExpressionRewriterTests.cs │ └── TrackedEntityInspectorTests.cs ├── Configuration │ ├── AddNamespaceDomain │ │ └── AddNamespaceConfiguration.cs │ ├── AddNamespaceTests.cs │ ├── ColumnExtensionTests.cs │ ├── ColumnTests.cs │ ├── ConfigurationBaseTests.cs │ ├── DefaultConventionTests.cs │ ├── DefaultMapperTests.cs │ ├── IndexTests.cs │ ├── MapExtensionsTests.cs │ ├── MapTests.cs │ ├── ReverseEngineer │ │ └── Sandbox.cs │ └── SelfReferenceTests │ │ ├── ConfigTests.cs │ │ ├── Domain │ │ ├── Blog.cs │ │ ├── Category.cs │ │ ├── Comment.cs │ │ ├── Like.cs │ │ ├── OneToOneLeft.cs │ │ ├── OneToOneRight.cs │ │ ├── Pair.cs │ │ ├── Post.cs │ │ ├── PostTag.cs │ │ ├── Tag.cs │ │ └── User.cs │ │ └── TestConfig.cs ├── CustomConfig.cs ├── Dashing.Tests.csproj ├── Engine │ ├── DDL │ │ ├── CreateTableWriterTests.cs │ │ └── DropTableWriterTests.cs │ ├── DML │ │ ├── BulkDeleteWriterTests.cs │ │ ├── BulkUpdateWriterTests.cs │ │ ├── CountWriterTests.cs │ │ ├── DeleteWriterTests.cs │ │ ├── DisjunctionOuterTransformedToUnionTests.cs │ │ ├── ExcludeIncludeTests.cs │ │ ├── FetchTreeParserTests.cs │ │ ├── IncludeExcludeParserTests.cs │ │ ├── InferredInnerJoinTests.cs │ │ ├── InsertWriterTests.cs │ │ ├── OrderClauseWriterTests.cs │ │ ├── SelectProjectionParserTests.cs │ │ ├── SelectTests.cs │ │ ├── SelectWriterTests.cs │ │ ├── TestDomains │ │ │ └── Application.cs │ │ ├── UpdateWriterTests.cs │ │ ├── WhereClauseWriterPerformanceTests.cs │ │ └── WhereClauseWriterTests.cs │ ├── DapperMapperGeneration │ │ ├── CollectionTests.cs │ │ └── NonCollectionTests.cs │ ├── Dialects │ │ ├── AnsiSqlDialectTests.cs │ │ ├── DialectFactoryTests.cs │ │ ├── MySqlDialectBaseTests.cs │ │ ├── SqlDialectBaseTests.cs │ │ └── SqlServerDialectBaseTests.cs │ └── InMemory │ │ ├── EntityClonerTests.cs │ │ ├── ExpressionExtensions.cs │ │ ├── FetchClonerTests.cs │ │ ├── InMemoryEngineTests.cs │ │ ├── InMemoryTableTests.cs │ │ ├── TestConfiguration.cs │ │ ├── TestDomain │ │ ├── Blog.cs │ │ ├── BoolClass.cs │ │ ├── Comment.cs │ │ ├── IEnableable.cs │ │ ├── Like.cs │ │ ├── OneToOne │ │ │ ├── Category.cs │ │ │ ├── OneToOneLeft.cs │ │ │ └── OneToOneRight.cs │ │ ├── Pair.cs │ │ ├── Post.cs │ │ ├── PostTag.cs │ │ ├── Tag.cs │ │ ├── ThingWithLongPrimaryKey.cs │ │ ├── ThingWithStringPrimaryKey.cs │ │ └── User.cs │ │ ├── WhereClauseCaseInsensitiveRewriterTests.cs │ │ ├── WhereClauseNullCheckRewriterTests.cs │ │ └── WhereClauseOpEqualityRewriterTests.cs ├── Extensions │ ├── DynamicParametersExtensions.cs │ └── ObjectPopulationExtensions.cs ├── Migration │ ├── AlterTests.cs │ ├── ConnectionStringManipulatorTests.cs │ ├── IndexTests.cs │ ├── MigrationCreateTests.cs │ ├── MigrationPairTests.cs │ ├── RenameEntityTests.cs │ ├── SimpleTests.cs │ └── TableNameEqualityComparerTests.cs ├── MockConfiguration.cs ├── ModelGeneration │ └── SourceTests.cs ├── MutableConfiguration.cs ├── NeedToDash.cs ├── Properties │ └── Annotations.cs ├── ReverseEngineering │ └── EngineerTests.cs ├── SelectQueryTests.cs ├── SessionExtensionsTests.cs ├── StringExtensions.cs ├── TestConfig.cs └── TestDomain │ ├── Blog.cs │ ├── BoolClass.cs │ ├── Category.cs │ ├── Circular │ ├── A.cs │ ├── B.cs │ └── C.cs │ ├── Comment.cs │ ├── Constructor │ └── ClassWithConstructor.cs │ ├── Customer.cs │ ├── Delivery.cs │ ├── Guid │ └── EntityWithGuidPk.cs │ ├── IEnableable.cs │ ├── Like.cs │ ├── LineItem.cs │ ├── NoPrimary.cs │ ├── OneToOne │ ├── Category.cs │ ├── OneToOneLeft.cs │ └── OneToOneRight.cs │ ├── OneToOneLeft.cs │ ├── OneToOneRight.cs │ ├── Order.cs │ ├── Pair.cs │ ├── Post.cs │ ├── PostTag.cs │ ├── SimpleClass.cs │ ├── Tag.cs │ ├── ThingThatReferencesOrderNullable.cs │ ├── ThingWithNullable.cs │ ├── User.cs │ └── Versioning │ └── VersionedEntity.cs ├── Dashing.Weaver ├── Commands │ ├── ExtractConfigs.cs │ └── Weave.cs ├── ConfigurationMetadataGeneration │ └── ConfigurationMetadataGenerator.cs ├── Dashing.Weaver.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Test.ini ├── WeaveException.cs └── Weaving │ ├── ColumnDefinition.cs │ ├── ConfigurationWeaver.cs │ ├── MapDefinition.cs │ ├── ModuleDefinitionExtensions.cs │ ├── NullLogger.cs │ ├── PEVerifier.cs │ ├── TypeDefinitionExtensions.cs │ └── Weavers │ ├── BaseWeaver.cs │ ├── CollectionInstantiationWeaver.cs │ ├── EqualityWeaver.cs │ ├── ForeignKeyWeaver.cs │ ├── ITaskLogHelper.cs │ ├── IWeaver.cs │ ├── SetLoggerWeaver.cs │ └── TrackedEntityWeaver.cs ├── Dashing.Weaving.Sample ├── App.config ├── Config.cs ├── Dashing.Weaving.Sample.csproj ├── Domain │ ├── Animal.cs │ ├── Bar.cs │ ├── Dog.cs │ ├── Duck.cs │ ├── EntityReferencingEntityWithPrimaryKey.cs │ ├── EntityWithGuidPrimaryKey.cs │ ├── EntityWithStringPrimaryKey.cs │ ├── Foo.cs │ ├── FooType.cs │ ├── IveGotMethods.cs │ ├── ReferencesAnotherAssembly.cs │ ├── Starship.cs │ ├── Tracking │ │ ├── GuidPK.cs │ │ ├── IntPk.cs │ │ ├── LongPk.cs │ │ ├── References.cs │ │ ├── StringPk.cs │ │ └── Target │ │ │ └── References.cs │ └── Whopper.cs ├── Program.cs └── Target │ ├── Bar.cs │ ├── EntityReferencingEntityWithPrimaryKey.cs │ ├── EntityWithGuidPrimaryKey.cs │ ├── EntityWithStringPrimaryKey.cs │ └── Foo.cs ├── Dashing.Weaving.Sample2 ├── AnotherAssembliesClass.cs └── Dashing.Weaving.Sample2.csproj ├── Dashing.Weaving.Tests ├── Dashing.Weaving.Tests.csproj ├── EqualityTests.cs ├── ForeignKeyTests.cs ├── GuidTest.cs ├── SetLoggerTests.cs ├── StringTests.cs ├── TrackingTests.cs ├── WeavingFixture.cs └── WeavingTests.cs ├── Dashing.sln ├── Dashing.sln.DotSettings ├── Dashing ├── AssemblyInfo.cs ├── CodeGeneration │ ├── DelegateProjectionResult.cs │ ├── DelegateQueryCreator.cs │ ├── FetchCollectionAwaiter.cs │ ├── IEnumerableAwaiter.cs │ ├── ISetLogger.cs │ ├── ITrackedEntity.cs │ ├── ITrackedEntityInspector.cs │ ├── ProjectionExpressionRewriter.cs │ ├── TrackedEntityInspector.cs │ └── TrackingCollection.cs ├── Configuration │ ├── BaseConfiguration.cs │ ├── Column.cs │ ├── ColumnExtensions.cs │ ├── DefaultConvention.cs │ ├── DefaultMapper.cs │ ├── ForeignKey.cs │ ├── IColumn.cs │ ├── IConfiguration.cs │ ├── IConvention.cs │ ├── IMap.cs │ ├── IMapT.cs │ ├── IMapper.cs │ ├── ISeeder.cs │ ├── Index.cs │ ├── IndexColumnComparer.cs │ ├── Map.cs │ ├── MapExtensions.cs │ ├── MapT.cs │ └── RelationshipType.cs ├── DapperWrapper.cs ├── Dashing.csproj ├── Engine │ ├── DDL │ │ ├── AlterTableWriter.cs │ │ ├── CreateTableWriter.cs │ │ ├── DropTableWriter.cs │ │ ├── IAlterTableWriter.cs │ │ ├── ICreateTableWriter.cs │ │ └── IDropTableWriter.cs │ ├── DML │ │ ├── AutoNamingDynamicParameters.cs │ │ ├── BaseExpressionVisitor.cs │ │ ├── BaseQueryNode.cs │ │ ├── BaseWriter.cs │ │ ├── BulkDeleteWriter.cs │ │ ├── BulkUpdateWriter.cs │ │ ├── ConstantChecker.cs │ │ ├── CountWriter.cs │ │ ├── DefaultAliasProvider.cs │ │ ├── DeleteWriter.cs │ │ ├── Elements │ │ │ ├── ColumnElement.cs │ │ │ ├── ConstantElement.cs │ │ │ ├── ISqlElement.cs │ │ │ └── StringElement.cs │ │ ├── ExpressionVisitorBase.cs │ │ ├── FetchTreeParser.cs │ │ ├── IAliasProvider.cs │ │ ├── IAliasProviderFactory.cs │ │ ├── IBulkDeleteWriter.cs │ │ ├── IBulkUpdateWriter.cs │ │ ├── ICountWriter.cs │ │ ├── IDeleteWriter.cs │ │ ├── IInsertWriter.cs │ │ ├── IOrderClauseWriter.cs │ │ ├── ISelectWriter.cs │ │ ├── IUpdateWriter.cs │ │ ├── IWhereClauseWriter.cs │ │ ├── IncludeExcludeParser.cs │ │ ├── InsertWriter.cs │ │ ├── MemberExpressionFetchNodeVisitor.cs │ │ ├── OrderClauseWriter.cs │ │ ├── OuterJoinDisjunctionTransformer.cs │ │ ├── QueryNode.cs │ │ ├── QueryTree.cs │ │ ├── SelectProjectionParser.cs │ │ ├── SelectWriter.GetByPrimaryKey.cs │ │ ├── SelectWriter.NoOrSingleCollectionNoPaging.cs │ │ ├── SelectWriter.NoPagingMultipleCollection.cs │ │ ├── SelectWriter.PagedCollectionFetch.cs │ │ ├── SelectWriter.cs │ │ ├── SelectWriterResult.cs │ │ ├── SqlWriterResult.cs │ │ ├── UpdateWriter.cs │ │ ├── WhereClauseWriter.cs │ │ └── WriterQueryCacheKey.cs │ ├── DapperMapperGeneration │ │ ├── IMultiCollectionMapperGenerator.cs │ │ ├── INonCollectionMapperGenerator.cs │ │ ├── ISingleCollectionMapperGenerator.cs │ │ ├── MultiCollectionMapperGenerator.cs │ │ ├── NonCollectionMapperGenerator.cs │ │ └── SingleCollectionMapperGenerator.cs │ ├── Dialects │ │ ├── AnsiSqlDialect.cs │ │ ├── ColumnSpecification.cs │ │ ├── DialectFactory.cs │ │ ├── ISqlDialect.cs │ │ ├── MySqlDialect.cs │ │ ├── SqlDialectBase.cs │ │ ├── SqlServer2012Dialect.cs │ │ ├── SqlServerDialect.cs │ │ └── SqliteDialect.cs │ ├── IEngine.cs │ ├── InMemory │ │ ├── EntityCloner.cs │ │ ├── FetchCloner.cs │ │ ├── InMemoryDbConnection.cs │ │ ├── InMemoryDbTransaction.cs │ │ ├── InMemoryEnumerableExtensions.cs │ │ ├── InMemoryKeyGenerator.cs │ │ ├── InMemoryTable.cs │ │ ├── MockDapper.cs │ │ ├── WhereClauseCaseInsensitiveRewriter.cs │ │ ├── WhereClauseNullCheckRewriter.cs │ │ └── WhereClauseOpEqualityRewriter.cs │ ├── InMemoryEngine.cs │ ├── NonExecutingSelectQueryExecutor.cs │ └── SqlEngine.cs ├── Events │ ├── EventHandlers.cs │ ├── IEventListener.cs │ ├── IOnPostDeleteEventListener.cs │ ├── IOnPostInsertEventListener.cs │ ├── IOnPostSaveEventListener.cs │ ├── IOnPreDeleteEventListener.cs │ ├── IOnPreInsertEventListener.cs │ └── IOnPreSaveEventListener.cs ├── Extensions │ ├── AssemblyExtensions.cs │ ├── AsyncLazy.cs │ ├── AsyncLock.cs │ ├── DapperExtensions.cs │ ├── DictionaryExtensions.cs │ ├── EnumerableExtensions.cs │ ├── Inflector.cs │ ├── MethodInfoExtensions.cs │ ├── OrderedDictionary.cs │ ├── ReferenceEqualityComparer.cs │ ├── SmartEnumerable.cs │ └── TypeExtensions.cs ├── FetchMany.cs ├── IAnswerProvider.cs ├── IDapper.cs ├── IDatabase.cs ├── IEnumerableSelectQuery.cs ├── IExecuteSelectQueries.cs ├── IFetchMany.cs ├── ILogger.cs ├── IProjectedSelectQuery.cs ├── IProjectedSelectQueryExecutor.cs ├── ISelectQuery.cs ├── ISession.Async.cs ├── ISession.Extensions.cs ├── ISession.Sync.cs ├── ISession.cs ├── InMemoryDatabase.cs ├── Logging │ ├── ILog.cs │ ├── ILogProvider.cs │ ├── LogExtensions.cs │ ├── LogLevel.cs │ ├── LogProvider.cs │ ├── LogProviders │ │ ├── DisposableAction.cs │ │ ├── LibLogException.cs │ │ ├── LogMessageFormatter.cs │ │ ├── LogProviderBase.cs │ │ ├── LoupeLogProvidercs.cs │ │ ├── SerilogLogProvider.cs │ │ ├── TraceEventTypeValues.cs │ │ └── TypeExtensions.cs │ ├── LoggerDelegate.cs │ └── LoggerExecutionWrapper.cs ├── Migration │ ├── ColumnKeyValuePairEqualityComparer.cs │ ├── ConnectionStringManipulator.cs │ ├── IMigrator.cs │ ├── IStatisticsProvider.cs │ ├── MigrationPair.cs │ ├── Migrator.cs │ ├── Statistics.cs │ ├── StatisticsProvider.cs │ ├── StringBuilderExtensions.cs │ └── TableNameEqualityComparer.cs ├── ModelGeneration │ ├── DefaultConvention.cs │ ├── IConvention.cs │ ├── IModelGenerator.cs │ └── ModelGenerator.cs ├── MultipleChoice.cs ├── OrderClause.cs ├── Page.cs ├── ProjectedSelectQuery.cs ├── ReverseEngineering │ ├── Column.cs │ ├── Configuration.cs │ ├── DefaultConvention.cs │ ├── Engineer.cs │ ├── IConvention.cs │ ├── IEngineer.cs │ ├── IReverseEngineeringColumn.cs │ └── IReverseEngineeringConfiguration.cs ├── SchemaReading │ ├── BaseSchemaReader.cs │ ├── ColumnDto.cs │ ├── Database.cs │ ├── ForeignKeyDto.cs │ ├── ISchemaReader.cs │ ├── IndexDto.cs │ ├── MySqlServerSchemaReader.cs │ ├── SchemaReaderFactory.cs │ ├── SqlServerSchemaReader.cs │ ├── TableDto.cs │ └── TemporalType.cs ├── SelectQuery.cs ├── Session.Async.cs ├── Session.Extensions..cs ├── Session.Sync.cs ├── Session.cs ├── SessionExtensions.cs ├── SqlDatabase.cs └── Versioning │ └── IVersionedEntity.cs ├── LICENSE ├── NuGet ├── Dashing.Weaver.targets ├── Init.ps1 ├── Weave.targets ├── _._ ├── dashing-cli.nuspec └── dashing-weaver.nuspec ├── Nuget.config ├── Package Dashing.bat ├── README.md ├── _config.yml ├── dashing-icon.png ├── docs ├── _config.yml ├── _layouts │ └── default.html ├── assets │ └── css │ │ └── style.scss ├── async-support.md ├── background.md ├── bulk-queries.md ├── configuration-basics.md ├── configuration-conventions.md ├── configuration-indexes.md ├── configuration.md ├── dapper.md ├── fetching-associations.md ├── index.md ├── migrations.md ├── performance.md ├── queries.md ├── saving-and-deleting.md ├── seeding.md ├── selecting-data.md ├── sessions.md ├── start.md └── testing.md └── references ├── Dapper ├── Dapper.dll ├── Dapper.pdb └── Dapper.xml └── LightSpeed ├── Mindscape.LightSpeed.Linq.dll ├── Mindscape.LightSpeed.Linq.xml ├── Mindscape.LightSpeed.dll └── Mindscape.LightSpeed.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/.gitignore -------------------------------------------------------------------------------- /Dashing.Cli/Commands/AddWeave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Cli/Commands/AddWeave.cs -------------------------------------------------------------------------------- /Dashing.Cli/Commands/Migrate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Cli/Commands/Migrate.cs -------------------------------------------------------------------------------- /Dashing.Cli/Commands/Script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Cli/Commands/Script.cs -------------------------------------------------------------------------------- /Dashing.Cli/Commands/ScriptExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Cli/Commands/ScriptExtensions.cs -------------------------------------------------------------------------------- /Dashing.Cli/Commands/Seed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Cli/Commands/Seed.cs -------------------------------------------------------------------------------- /Dashing.Cli/Dashing.Cli.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Cli/Dashing.Cli.csproj -------------------------------------------------------------------------------- /Dashing.Cli/Dashing.Tool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Cli/Dashing.Tool.csproj -------------------------------------------------------------------------------- /Dashing.Cli/DatabaseMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Cli/DatabaseMigrator.cs -------------------------------------------------------------------------------- /Dashing.Cli/DbProviderFactoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Cli/DbProviderFactoryExtensions.cs -------------------------------------------------------------------------------- /Dashing.Cli/DbProviderFactoryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Cli/DbProviderFactoryFactory.cs -------------------------------------------------------------------------------- /Dashing.Cli/NullStatisticsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Cli/NullStatisticsProvider.cs -------------------------------------------------------------------------------- /Dashing.Cli/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Cli/Program.cs -------------------------------------------------------------------------------- /Dashing.Cli/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Cli/Properties/launchSettings.json -------------------------------------------------------------------------------- /Dashing.Cli/ScriptGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Cli/ScriptGenerator.cs -------------------------------------------------------------------------------- /Dashing.Cli/Seeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Cli/Seeder.cs -------------------------------------------------------------------------------- /Dashing.Cli/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Cli/app.config -------------------------------------------------------------------------------- /Dashing.CommandLine/AssemblyContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.CommandLine/AssemblyContext.cs -------------------------------------------------------------------------------- /Dashing.CommandLine/AssemblyResolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.CommandLine/AssemblyResolution.cs -------------------------------------------------------------------------------- /Dashing.CommandLine/ColorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.CommandLine/ColorContext.cs -------------------------------------------------------------------------------- /Dashing.CommandLine/ConsoleAnswerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.CommandLine/ConsoleAnswerProvider.cs -------------------------------------------------------------------------------- /Dashing.CommandLine/LogConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.CommandLine/LogConfiguration.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/App.config -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Dashing.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Dashing.IntegrationTests.csproj -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Setup/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Setup/Configuration.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Setup/DatabaseInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Setup/DatabaseInitializer.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Setup/MySqlServerDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Setup/MySqlServerDatabase.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Setup/SessionDataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Setup/SessionDataGenerator.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Setup/SqlLiteConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Setup/SqlLiteConfiguration.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Setup/SqlServerDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Setup/SqlServerDatabase.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Setup/SqlSessionCreatorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Setup/SqlSessionCreatorExtensions.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Setup/TestDatabaseGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Setup/TestDatabaseGenerator.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Setup/TestSessionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Setup/TestSessionWrapper.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/TestDomain/Blog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/TestDomain/Blog.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/TestDomain/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/TestDomain/Comment.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/TestDomain/More/Bed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/TestDomain/More/Bed.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/TestDomain/More/Booking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/TestDomain/More/Booking.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/TestDomain/More/Question.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/TestDomain/More/Question.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/TestDomain/More/QuestionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/TestDomain/More/QuestionResponse.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/TestDomain/More/Questionnaire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/TestDomain/More/Questionnaire.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/TestDomain/More/QuestionnaireResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/TestDomain/More/QuestionnaireResponse.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/TestDomain/More/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/TestDomain/More/Room.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/TestDomain/More/RoomSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/TestDomain/More/RoomSlot.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/TestDomain/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/TestDomain/Post.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/TestDomain/PostTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/TestDomain/PostTag.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/TestDomain/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/TestDomain/Tag.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/TestDomain/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/TestDomain/User.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/TestDomain/Versioned/NonVersioned/NonVersionedConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/TestDomain/Versioned/NonVersioned/NonVersionedConfiguration.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/TestDomain/Versioned/NonVersioned/VersionedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/TestDomain/Versioned/NonVersioned/VersionedEntity.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/TestDomain/Versioned/VersionedConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/TestDomain/Versioned/VersionedConfiguration.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/TestDomain/Versioned/VersionedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/TestDomain/Versioned/VersionedEntity.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Tests/AnyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Tests/AnyTests.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Tests/AsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Tests/AsyncTests.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Tests/CUDTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Tests/CUDTests.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Tests/CollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Tests/CollectionTests.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Tests/DapperWrapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Tests/DapperWrapperTests.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Tests/EnumeratingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Tests/EnumeratingTests.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Tests/FetchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Tests/FetchTests.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Tests/ForUpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Tests/ForUpdateTests.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Tests/OuterJoinDisjunctionTransformerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Tests/OuterJoinDisjunctionTransformerTests.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Tests/ProjectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Tests/ProjectionTests.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Tests/SelectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Tests/SelectTests.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Tests/TransactionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Tests/TransactionTests.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/Tests/dash/VersionedEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/Tests/dash/VersionedEntityTests.cs -------------------------------------------------------------------------------- /Dashing.IntegrationTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.IntegrationTests/packages.config -------------------------------------------------------------------------------- /Dashing.PerformanceTests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.PerformanceTests/App.config -------------------------------------------------------------------------------- /Dashing.PerformanceTests/Dashing.PerformanceTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.PerformanceTests/Dashing.PerformanceTests.csproj -------------------------------------------------------------------------------- /Dashing.PerformanceTests/Domain/Blog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.PerformanceTests/Domain/Blog.cs -------------------------------------------------------------------------------- /Dashing.PerformanceTests/Domain/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.PerformanceTests/Domain/Comment.cs -------------------------------------------------------------------------------- /Dashing.PerformanceTests/Domain/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.PerformanceTests/Domain/Post.cs -------------------------------------------------------------------------------- /Dashing.PerformanceTests/Domain/PostTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.PerformanceTests/Domain/PostTag.cs -------------------------------------------------------------------------------- /Dashing.PerformanceTests/Domain/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.PerformanceTests/Domain/Tag.cs -------------------------------------------------------------------------------- /Dashing.PerformanceTests/Domain/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.PerformanceTests/Domain/User.cs -------------------------------------------------------------------------------- /Dashing.PerformanceTests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.PerformanceTests/Program.cs -------------------------------------------------------------------------------- /Dashing.PerformanceTests/Providers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.PerformanceTests/Providers.cs -------------------------------------------------------------------------------- /Dashing.PerformanceTests/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.PerformanceTests/Test.cs -------------------------------------------------------------------------------- /Dashing.PerformanceTests/Tests/Dashing/DashingConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.PerformanceTests/Tests/Dashing/DashingConfiguration.cs -------------------------------------------------------------------------------- /Dashing.PerformanceTests/Tests/EntityFramework/EfContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.PerformanceTests/Tests/EntityFramework/EfContext.cs -------------------------------------------------------------------------------- /Dashing.PerformanceTests/Tests/NHibernate/NH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.PerformanceTests/Tests/NHibernate/NH.cs -------------------------------------------------------------------------------- /Dashing.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/App.config -------------------------------------------------------------------------------- /Dashing.Tests/CodeGeneration/ProjectExpressionRewriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/CodeGeneration/ProjectExpressionRewriterTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/CodeGeneration/TrackedEntityInspectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/CodeGeneration/TrackedEntityInspectorTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/AddNamespaceDomain/AddNamespaceConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/AddNamespaceDomain/AddNamespaceConfiguration.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/AddNamespaceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/AddNamespaceTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/ColumnExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/ColumnExtensionTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/ColumnTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/ColumnTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/ConfigurationBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/ConfigurationBaseTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/DefaultConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/DefaultConventionTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/DefaultMapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/DefaultMapperTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/IndexTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/IndexTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/MapExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/MapExtensionsTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/MapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/MapTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/ReverseEngineer/Sandbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/ReverseEngineer/Sandbox.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/SelfReferenceTests/ConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/SelfReferenceTests/ConfigTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/SelfReferenceTests/Domain/Blog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/SelfReferenceTests/Domain/Blog.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/SelfReferenceTests/Domain/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/SelfReferenceTests/Domain/Category.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/SelfReferenceTests/Domain/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/SelfReferenceTests/Domain/Comment.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/SelfReferenceTests/Domain/Like.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/SelfReferenceTests/Domain/Like.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/SelfReferenceTests/Domain/OneToOneLeft.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/SelfReferenceTests/Domain/OneToOneLeft.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/SelfReferenceTests/Domain/OneToOneRight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/SelfReferenceTests/Domain/OneToOneRight.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/SelfReferenceTests/Domain/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/SelfReferenceTests/Domain/Pair.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/SelfReferenceTests/Domain/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/SelfReferenceTests/Domain/Post.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/SelfReferenceTests/Domain/PostTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/SelfReferenceTests/Domain/PostTag.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/SelfReferenceTests/Domain/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/SelfReferenceTests/Domain/Tag.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/SelfReferenceTests/Domain/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/SelfReferenceTests/Domain/User.cs -------------------------------------------------------------------------------- /Dashing.Tests/Configuration/SelfReferenceTests/TestConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Configuration/SelfReferenceTests/TestConfig.cs -------------------------------------------------------------------------------- /Dashing.Tests/CustomConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/CustomConfig.cs -------------------------------------------------------------------------------- /Dashing.Tests/Dashing.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Dashing.Tests.csproj -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DDL/CreateTableWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DDL/CreateTableWriterTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DDL/DropTableWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DDL/DropTableWriterTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DML/BulkDeleteWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DML/BulkDeleteWriterTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DML/BulkUpdateWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DML/BulkUpdateWriterTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DML/CountWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DML/CountWriterTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DML/DeleteWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DML/DeleteWriterTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DML/DisjunctionOuterTransformedToUnionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DML/DisjunctionOuterTransformedToUnionTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DML/ExcludeIncludeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DML/ExcludeIncludeTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DML/FetchTreeParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DML/FetchTreeParserTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DML/IncludeExcludeParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DML/IncludeExcludeParserTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DML/InferredInnerJoinTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DML/InferredInnerJoinTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DML/InsertWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DML/InsertWriterTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DML/OrderClauseWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DML/OrderClauseWriterTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DML/SelectProjectionParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DML/SelectProjectionParserTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DML/SelectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DML/SelectTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DML/SelectWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DML/SelectWriterTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DML/TestDomains/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DML/TestDomains/Application.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DML/UpdateWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DML/UpdateWriterTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DML/WhereClauseWriterPerformanceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DML/WhereClauseWriterPerformanceTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DML/WhereClauseWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DML/WhereClauseWriterTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DapperMapperGeneration/CollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DapperMapperGeneration/CollectionTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/DapperMapperGeneration/NonCollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/DapperMapperGeneration/NonCollectionTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/Dialects/AnsiSqlDialectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/Dialects/AnsiSqlDialectTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/Dialects/DialectFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/Dialects/DialectFactoryTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/Dialects/MySqlDialectBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/Dialects/MySqlDialectBaseTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/Dialects/SqlDialectBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/Dialects/SqlDialectBaseTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/Dialects/SqlServerDialectBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/Dialects/SqlServerDialectBaseTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/EntityClonerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/EntityClonerTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/ExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/ExpressionExtensions.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/FetchClonerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/FetchClonerTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/InMemoryEngineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/InMemoryEngineTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/InMemoryTableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/InMemoryTableTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/TestConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/TestConfiguration.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/TestDomain/Blog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/TestDomain/Blog.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/TestDomain/BoolClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/TestDomain/BoolClass.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/TestDomain/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/TestDomain/Comment.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/TestDomain/IEnableable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/TestDomain/IEnableable.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/TestDomain/Like.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/TestDomain/Like.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/TestDomain/OneToOne/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/TestDomain/OneToOne/Category.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/TestDomain/OneToOne/OneToOneLeft.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/TestDomain/OneToOne/OneToOneLeft.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/TestDomain/OneToOne/OneToOneRight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/TestDomain/OneToOne/OneToOneRight.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/TestDomain/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/TestDomain/Pair.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/TestDomain/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/TestDomain/Post.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/TestDomain/PostTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/TestDomain/PostTag.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/TestDomain/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/TestDomain/Tag.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/TestDomain/ThingWithLongPrimaryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/TestDomain/ThingWithLongPrimaryKey.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/TestDomain/ThingWithStringPrimaryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/TestDomain/ThingWithStringPrimaryKey.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/TestDomain/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/TestDomain/User.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/WhereClauseCaseInsensitiveRewriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/WhereClauseCaseInsensitiveRewriterTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/WhereClauseNullCheckRewriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/WhereClauseNullCheckRewriterTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Engine/InMemory/WhereClauseOpEqualityRewriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Engine/InMemory/WhereClauseOpEqualityRewriterTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Extensions/DynamicParametersExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Extensions/DynamicParametersExtensions.cs -------------------------------------------------------------------------------- /Dashing.Tests/Extensions/ObjectPopulationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Extensions/ObjectPopulationExtensions.cs -------------------------------------------------------------------------------- /Dashing.Tests/Migration/AlterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Migration/AlterTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Migration/ConnectionStringManipulatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Migration/ConnectionStringManipulatorTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Migration/IndexTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Migration/IndexTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Migration/MigrationCreateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Migration/MigrationCreateTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Migration/MigrationPairTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Migration/MigrationPairTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Migration/RenameEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Migration/RenameEntityTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Migration/SimpleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Migration/SimpleTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/Migration/TableNameEqualityComparerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Migration/TableNameEqualityComparerTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/MockConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/MockConfiguration.cs -------------------------------------------------------------------------------- /Dashing.Tests/ModelGeneration/SourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/ModelGeneration/SourceTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/MutableConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/MutableConfiguration.cs -------------------------------------------------------------------------------- /Dashing.Tests/NeedToDash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/NeedToDash.cs -------------------------------------------------------------------------------- /Dashing.Tests/Properties/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/Properties/Annotations.cs -------------------------------------------------------------------------------- /Dashing.Tests/ReverseEngineering/EngineerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/ReverseEngineering/EngineerTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/SelectQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/SelectQueryTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/SessionExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/SessionExtensionsTests.cs -------------------------------------------------------------------------------- /Dashing.Tests/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/StringExtensions.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestConfig.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/Blog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/Blog.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/BoolClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/BoolClass.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/Category.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/Circular/A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/Circular/A.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/Circular/B.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/Circular/B.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/Circular/C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/Circular/C.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/Comment.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/Constructor/ClassWithConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/Constructor/ClassWithConstructor.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/Customer.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/Delivery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/Delivery.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/Guid/EntityWithGuidPk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/Guid/EntityWithGuidPk.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/IEnableable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/IEnableable.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/Like.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/Like.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/LineItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/LineItem.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/NoPrimary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/NoPrimary.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/OneToOne/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/OneToOne/Category.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/OneToOne/OneToOneLeft.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/OneToOne/OneToOneLeft.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/OneToOne/OneToOneRight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/OneToOne/OneToOneRight.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/OneToOneLeft.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/OneToOneLeft.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/OneToOneRight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/OneToOneRight.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/Order.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/Pair.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/Post.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/PostTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/PostTag.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/SimpleClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/SimpleClass.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/Tag.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/ThingThatReferencesOrderNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/ThingThatReferencesOrderNullable.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/ThingWithNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/ThingWithNullable.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/User.cs -------------------------------------------------------------------------------- /Dashing.Tests/TestDomain/Versioning/VersionedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Tests/TestDomain/Versioning/VersionedEntity.cs -------------------------------------------------------------------------------- /Dashing.Weaver/Commands/ExtractConfigs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Commands/ExtractConfigs.cs -------------------------------------------------------------------------------- /Dashing.Weaver/Commands/Weave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Commands/Weave.cs -------------------------------------------------------------------------------- /Dashing.Weaver/ConfigurationMetadataGeneration/ConfigurationMetadataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/ConfigurationMetadataGeneration/ConfigurationMetadataGenerator.cs -------------------------------------------------------------------------------- /Dashing.Weaver/Dashing.Weaver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Dashing.Weaver.csproj -------------------------------------------------------------------------------- /Dashing.Weaver/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Program.cs -------------------------------------------------------------------------------- /Dashing.Weaver/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Properties/launchSettings.json -------------------------------------------------------------------------------- /Dashing.Weaver/Test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Test.ini -------------------------------------------------------------------------------- /Dashing.Weaver/WeaveException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/WeaveException.cs -------------------------------------------------------------------------------- /Dashing.Weaver/Weaving/ColumnDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Weaving/ColumnDefinition.cs -------------------------------------------------------------------------------- /Dashing.Weaver/Weaving/ConfigurationWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Weaving/ConfigurationWeaver.cs -------------------------------------------------------------------------------- /Dashing.Weaver/Weaving/MapDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Weaving/MapDefinition.cs -------------------------------------------------------------------------------- /Dashing.Weaver/Weaving/ModuleDefinitionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Weaving/ModuleDefinitionExtensions.cs -------------------------------------------------------------------------------- /Dashing.Weaver/Weaving/NullLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Weaving/NullLogger.cs -------------------------------------------------------------------------------- /Dashing.Weaver/Weaving/PEVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Weaving/PEVerifier.cs -------------------------------------------------------------------------------- /Dashing.Weaver/Weaving/TypeDefinitionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Weaving/TypeDefinitionExtensions.cs -------------------------------------------------------------------------------- /Dashing.Weaver/Weaving/Weavers/BaseWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Weaving/Weavers/BaseWeaver.cs -------------------------------------------------------------------------------- /Dashing.Weaver/Weaving/Weavers/CollectionInstantiationWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Weaving/Weavers/CollectionInstantiationWeaver.cs -------------------------------------------------------------------------------- /Dashing.Weaver/Weaving/Weavers/EqualityWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Weaving/Weavers/EqualityWeaver.cs -------------------------------------------------------------------------------- /Dashing.Weaver/Weaving/Weavers/ForeignKeyWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Weaving/Weavers/ForeignKeyWeaver.cs -------------------------------------------------------------------------------- /Dashing.Weaver/Weaving/Weavers/ITaskLogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Weaving/Weavers/ITaskLogHelper.cs -------------------------------------------------------------------------------- /Dashing.Weaver/Weaving/Weavers/IWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Weaving/Weavers/IWeaver.cs -------------------------------------------------------------------------------- /Dashing.Weaver/Weaving/Weavers/SetLoggerWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Weaving/Weavers/SetLoggerWeaver.cs -------------------------------------------------------------------------------- /Dashing.Weaver/Weaving/Weavers/TrackedEntityWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaver/Weaving/Weavers/TrackedEntityWeaver.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/App.config -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Config.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Dashing.Weaving.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Dashing.Weaving.Sample.csproj -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Domain/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Domain/Animal.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Domain/Bar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Domain/Bar.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Domain/Dog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Domain/Dog.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Domain/Duck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Domain/Duck.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Domain/EntityReferencingEntityWithPrimaryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Domain/EntityReferencingEntityWithPrimaryKey.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Domain/EntityWithGuidPrimaryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Domain/EntityWithGuidPrimaryKey.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Domain/EntityWithStringPrimaryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Domain/EntityWithStringPrimaryKey.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Domain/Foo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Domain/Foo.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Domain/FooType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Domain/FooType.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Domain/IveGotMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Domain/IveGotMethods.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Domain/ReferencesAnotherAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Domain/ReferencesAnotherAssembly.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Domain/Starship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Domain/Starship.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Domain/Tracking/GuidPK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Domain/Tracking/GuidPK.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Domain/Tracking/IntPk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Domain/Tracking/IntPk.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Domain/Tracking/LongPk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Domain/Tracking/LongPk.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Domain/Tracking/References.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Domain/Tracking/References.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Domain/Tracking/StringPk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Domain/Tracking/StringPk.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Domain/Tracking/Target/References.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Domain/Tracking/Target/References.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Domain/Whopper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Domain/Whopper.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Program.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Target/Bar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Target/Bar.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Target/EntityReferencingEntityWithPrimaryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Target/EntityReferencingEntityWithPrimaryKey.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Target/EntityWithGuidPrimaryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Target/EntityWithGuidPrimaryKey.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Target/EntityWithStringPrimaryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Target/EntityWithStringPrimaryKey.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample/Target/Foo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample/Target/Foo.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample2/AnotherAssembliesClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample2/AnotherAssembliesClass.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Sample2/Dashing.Weaving.Sample2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Sample2/Dashing.Weaving.Sample2.csproj -------------------------------------------------------------------------------- /Dashing.Weaving.Tests/Dashing.Weaving.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Tests/Dashing.Weaving.Tests.csproj -------------------------------------------------------------------------------- /Dashing.Weaving.Tests/EqualityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Tests/EqualityTests.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Tests/ForeignKeyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Tests/ForeignKeyTests.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Tests/GuidTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Tests/GuidTest.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Tests/SetLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Tests/SetLoggerTests.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Tests/StringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Tests/StringTests.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Tests/TrackingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Tests/TrackingTests.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Tests/WeavingFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Tests/WeavingFixture.cs -------------------------------------------------------------------------------- /Dashing.Weaving.Tests/WeavingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.Weaving.Tests/WeavingTests.cs -------------------------------------------------------------------------------- /Dashing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.sln -------------------------------------------------------------------------------- /Dashing.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing.sln.DotSettings -------------------------------------------------------------------------------- /Dashing/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | [assembly: System.Runtime.CompilerServices.InternalsVisibleTo("Dashing.Tests")] -------------------------------------------------------------------------------- /Dashing/CodeGeneration/DelegateProjectionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/CodeGeneration/DelegateProjectionResult.cs -------------------------------------------------------------------------------- /Dashing/CodeGeneration/DelegateQueryCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/CodeGeneration/DelegateQueryCreator.cs -------------------------------------------------------------------------------- /Dashing/CodeGeneration/FetchCollectionAwaiter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/CodeGeneration/FetchCollectionAwaiter.cs -------------------------------------------------------------------------------- /Dashing/CodeGeneration/IEnumerableAwaiter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/CodeGeneration/IEnumerableAwaiter.cs -------------------------------------------------------------------------------- /Dashing/CodeGeneration/ISetLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/CodeGeneration/ISetLogger.cs -------------------------------------------------------------------------------- /Dashing/CodeGeneration/ITrackedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/CodeGeneration/ITrackedEntity.cs -------------------------------------------------------------------------------- /Dashing/CodeGeneration/ITrackedEntityInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/CodeGeneration/ITrackedEntityInspector.cs -------------------------------------------------------------------------------- /Dashing/CodeGeneration/ProjectionExpressionRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/CodeGeneration/ProjectionExpressionRewriter.cs -------------------------------------------------------------------------------- /Dashing/CodeGeneration/TrackedEntityInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/CodeGeneration/TrackedEntityInspector.cs -------------------------------------------------------------------------------- /Dashing/CodeGeneration/TrackingCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/CodeGeneration/TrackingCollection.cs -------------------------------------------------------------------------------- /Dashing/Configuration/BaseConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Configuration/BaseConfiguration.cs -------------------------------------------------------------------------------- /Dashing/Configuration/Column.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Configuration/Column.cs -------------------------------------------------------------------------------- /Dashing/Configuration/ColumnExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Configuration/ColumnExtensions.cs -------------------------------------------------------------------------------- /Dashing/Configuration/DefaultConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Configuration/DefaultConvention.cs -------------------------------------------------------------------------------- /Dashing/Configuration/DefaultMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Configuration/DefaultMapper.cs -------------------------------------------------------------------------------- /Dashing/Configuration/ForeignKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Configuration/ForeignKey.cs -------------------------------------------------------------------------------- /Dashing/Configuration/IColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Configuration/IColumn.cs -------------------------------------------------------------------------------- /Dashing/Configuration/IConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Configuration/IConfiguration.cs -------------------------------------------------------------------------------- /Dashing/Configuration/IConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Configuration/IConvention.cs -------------------------------------------------------------------------------- /Dashing/Configuration/IMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Configuration/IMap.cs -------------------------------------------------------------------------------- /Dashing/Configuration/IMapT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Configuration/IMapT.cs -------------------------------------------------------------------------------- /Dashing/Configuration/IMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Configuration/IMapper.cs -------------------------------------------------------------------------------- /Dashing/Configuration/ISeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Configuration/ISeeder.cs -------------------------------------------------------------------------------- /Dashing/Configuration/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Configuration/Index.cs -------------------------------------------------------------------------------- /Dashing/Configuration/IndexColumnComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Configuration/IndexColumnComparer.cs -------------------------------------------------------------------------------- /Dashing/Configuration/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Configuration/Map.cs -------------------------------------------------------------------------------- /Dashing/Configuration/MapExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Configuration/MapExtensions.cs -------------------------------------------------------------------------------- /Dashing/Configuration/MapT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Configuration/MapT.cs -------------------------------------------------------------------------------- /Dashing/Configuration/RelationshipType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Configuration/RelationshipType.cs -------------------------------------------------------------------------------- /Dashing/DapperWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/DapperWrapper.cs -------------------------------------------------------------------------------- /Dashing/Dashing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Dashing.csproj -------------------------------------------------------------------------------- /Dashing/Engine/DDL/AlterTableWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DDL/AlterTableWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DDL/CreateTableWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DDL/CreateTableWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DDL/DropTableWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DDL/DropTableWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DDL/IAlterTableWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DDL/IAlterTableWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DDL/ICreateTableWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DDL/ICreateTableWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DDL/IDropTableWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DDL/IDropTableWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/AutoNamingDynamicParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/AutoNamingDynamicParameters.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/BaseExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/BaseExpressionVisitor.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/BaseQueryNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/BaseQueryNode.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/BaseWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/BaseWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/BulkDeleteWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/BulkDeleteWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/BulkUpdateWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/BulkUpdateWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/ConstantChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/ConstantChecker.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/CountWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/CountWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/DefaultAliasProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/DefaultAliasProvider.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/DeleteWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/DeleteWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/Elements/ColumnElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/Elements/ColumnElement.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/Elements/ConstantElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/Elements/ConstantElement.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/Elements/ISqlElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/Elements/ISqlElement.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/Elements/StringElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/Elements/StringElement.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/ExpressionVisitorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/ExpressionVisitorBase.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/FetchTreeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/FetchTreeParser.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/IAliasProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/IAliasProvider.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/IAliasProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/IAliasProviderFactory.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/IBulkDeleteWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/IBulkDeleteWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/IBulkUpdateWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/IBulkUpdateWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/ICountWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/ICountWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/IDeleteWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/IDeleteWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/IInsertWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/IInsertWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/IOrderClauseWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/IOrderClauseWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/ISelectWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/ISelectWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/IUpdateWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/IUpdateWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/IWhereClauseWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/IWhereClauseWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/IncludeExcludeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/IncludeExcludeParser.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/InsertWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/InsertWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/MemberExpressionFetchNodeVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/MemberExpressionFetchNodeVisitor.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/OrderClauseWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/OrderClauseWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/OuterJoinDisjunctionTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/OuterJoinDisjunctionTransformer.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/QueryNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/QueryNode.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/QueryTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/QueryTree.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/SelectProjectionParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/SelectProjectionParser.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/SelectWriter.GetByPrimaryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/SelectWriter.GetByPrimaryKey.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/SelectWriter.NoOrSingleCollectionNoPaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/SelectWriter.NoOrSingleCollectionNoPaging.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/SelectWriter.NoPagingMultipleCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/SelectWriter.NoPagingMultipleCollection.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/SelectWriter.PagedCollectionFetch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/SelectWriter.PagedCollectionFetch.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/SelectWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/SelectWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/SelectWriterResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/SelectWriterResult.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/SqlWriterResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/SqlWriterResult.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/UpdateWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/UpdateWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/WhereClauseWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/WhereClauseWriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/DML/WriterQueryCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DML/WriterQueryCacheKey.cs -------------------------------------------------------------------------------- /Dashing/Engine/DapperMapperGeneration/IMultiCollectionMapperGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DapperMapperGeneration/IMultiCollectionMapperGenerator.cs -------------------------------------------------------------------------------- /Dashing/Engine/DapperMapperGeneration/INonCollectionMapperGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DapperMapperGeneration/INonCollectionMapperGenerator.cs -------------------------------------------------------------------------------- /Dashing/Engine/DapperMapperGeneration/ISingleCollectionMapperGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DapperMapperGeneration/ISingleCollectionMapperGenerator.cs -------------------------------------------------------------------------------- /Dashing/Engine/DapperMapperGeneration/MultiCollectionMapperGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DapperMapperGeneration/MultiCollectionMapperGenerator.cs -------------------------------------------------------------------------------- /Dashing/Engine/DapperMapperGeneration/NonCollectionMapperGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DapperMapperGeneration/NonCollectionMapperGenerator.cs -------------------------------------------------------------------------------- /Dashing/Engine/DapperMapperGeneration/SingleCollectionMapperGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/DapperMapperGeneration/SingleCollectionMapperGenerator.cs -------------------------------------------------------------------------------- /Dashing/Engine/Dialects/AnsiSqlDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/Dialects/AnsiSqlDialect.cs -------------------------------------------------------------------------------- /Dashing/Engine/Dialects/ColumnSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/Dialects/ColumnSpecification.cs -------------------------------------------------------------------------------- /Dashing/Engine/Dialects/DialectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/Dialects/DialectFactory.cs -------------------------------------------------------------------------------- /Dashing/Engine/Dialects/ISqlDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/Dialects/ISqlDialect.cs -------------------------------------------------------------------------------- /Dashing/Engine/Dialects/MySqlDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/Dialects/MySqlDialect.cs -------------------------------------------------------------------------------- /Dashing/Engine/Dialects/SqlDialectBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/Dialects/SqlDialectBase.cs -------------------------------------------------------------------------------- /Dashing/Engine/Dialects/SqlServer2012Dialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/Dialects/SqlServer2012Dialect.cs -------------------------------------------------------------------------------- /Dashing/Engine/Dialects/SqlServerDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/Dialects/SqlServerDialect.cs -------------------------------------------------------------------------------- /Dashing/Engine/Dialects/SqliteDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/Dialects/SqliteDialect.cs -------------------------------------------------------------------------------- /Dashing/Engine/IEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/IEngine.cs -------------------------------------------------------------------------------- /Dashing/Engine/InMemory/EntityCloner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/InMemory/EntityCloner.cs -------------------------------------------------------------------------------- /Dashing/Engine/InMemory/FetchCloner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/InMemory/FetchCloner.cs -------------------------------------------------------------------------------- /Dashing/Engine/InMemory/InMemoryDbConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/InMemory/InMemoryDbConnection.cs -------------------------------------------------------------------------------- /Dashing/Engine/InMemory/InMemoryDbTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/InMemory/InMemoryDbTransaction.cs -------------------------------------------------------------------------------- /Dashing/Engine/InMemory/InMemoryEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/InMemory/InMemoryEnumerableExtensions.cs -------------------------------------------------------------------------------- /Dashing/Engine/InMemory/InMemoryKeyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/InMemory/InMemoryKeyGenerator.cs -------------------------------------------------------------------------------- /Dashing/Engine/InMemory/InMemoryTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/InMemory/InMemoryTable.cs -------------------------------------------------------------------------------- /Dashing/Engine/InMemory/MockDapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/InMemory/MockDapper.cs -------------------------------------------------------------------------------- /Dashing/Engine/InMemory/WhereClauseCaseInsensitiveRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/InMemory/WhereClauseCaseInsensitiveRewriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/InMemory/WhereClauseNullCheckRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/InMemory/WhereClauseNullCheckRewriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/InMemory/WhereClauseOpEqualityRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/InMemory/WhereClauseOpEqualityRewriter.cs -------------------------------------------------------------------------------- /Dashing/Engine/InMemoryEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/InMemoryEngine.cs -------------------------------------------------------------------------------- /Dashing/Engine/NonExecutingSelectQueryExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/NonExecutingSelectQueryExecutor.cs -------------------------------------------------------------------------------- /Dashing/Engine/SqlEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Engine/SqlEngine.cs -------------------------------------------------------------------------------- /Dashing/Events/EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Events/EventHandlers.cs -------------------------------------------------------------------------------- /Dashing/Events/IEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Events/IEventListener.cs -------------------------------------------------------------------------------- /Dashing/Events/IOnPostDeleteEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Events/IOnPostDeleteEventListener.cs -------------------------------------------------------------------------------- /Dashing/Events/IOnPostInsertEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Events/IOnPostInsertEventListener.cs -------------------------------------------------------------------------------- /Dashing/Events/IOnPostSaveEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Events/IOnPostSaveEventListener.cs -------------------------------------------------------------------------------- /Dashing/Events/IOnPreDeleteEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Events/IOnPreDeleteEventListener.cs -------------------------------------------------------------------------------- /Dashing/Events/IOnPreInsertEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Events/IOnPreInsertEventListener.cs -------------------------------------------------------------------------------- /Dashing/Events/IOnPreSaveEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Events/IOnPreSaveEventListener.cs -------------------------------------------------------------------------------- /Dashing/Extensions/AssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Extensions/AssemblyExtensions.cs -------------------------------------------------------------------------------- /Dashing/Extensions/AsyncLazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Extensions/AsyncLazy.cs -------------------------------------------------------------------------------- /Dashing/Extensions/AsyncLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Extensions/AsyncLock.cs -------------------------------------------------------------------------------- /Dashing/Extensions/DapperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Extensions/DapperExtensions.cs -------------------------------------------------------------------------------- /Dashing/Extensions/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Extensions/DictionaryExtensions.cs -------------------------------------------------------------------------------- /Dashing/Extensions/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Extensions/EnumerableExtensions.cs -------------------------------------------------------------------------------- /Dashing/Extensions/Inflector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Extensions/Inflector.cs -------------------------------------------------------------------------------- /Dashing/Extensions/MethodInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Extensions/MethodInfoExtensions.cs -------------------------------------------------------------------------------- /Dashing/Extensions/OrderedDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Extensions/OrderedDictionary.cs -------------------------------------------------------------------------------- /Dashing/Extensions/ReferenceEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Extensions/ReferenceEqualityComparer.cs -------------------------------------------------------------------------------- /Dashing/Extensions/SmartEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Extensions/SmartEnumerable.cs -------------------------------------------------------------------------------- /Dashing/Extensions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Extensions/TypeExtensions.cs -------------------------------------------------------------------------------- /Dashing/FetchMany.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/FetchMany.cs -------------------------------------------------------------------------------- /Dashing/IAnswerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/IAnswerProvider.cs -------------------------------------------------------------------------------- /Dashing/IDapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/IDapper.cs -------------------------------------------------------------------------------- /Dashing/IDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/IDatabase.cs -------------------------------------------------------------------------------- /Dashing/IEnumerableSelectQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/IEnumerableSelectQuery.cs -------------------------------------------------------------------------------- /Dashing/IExecuteSelectQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/IExecuteSelectQueries.cs -------------------------------------------------------------------------------- /Dashing/IFetchMany.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/IFetchMany.cs -------------------------------------------------------------------------------- /Dashing/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/ILogger.cs -------------------------------------------------------------------------------- /Dashing/IProjectedSelectQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/IProjectedSelectQuery.cs -------------------------------------------------------------------------------- /Dashing/IProjectedSelectQueryExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/IProjectedSelectQueryExecutor.cs -------------------------------------------------------------------------------- /Dashing/ISelectQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/ISelectQuery.cs -------------------------------------------------------------------------------- /Dashing/ISession.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/ISession.Async.cs -------------------------------------------------------------------------------- /Dashing/ISession.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/ISession.Extensions.cs -------------------------------------------------------------------------------- /Dashing/ISession.Sync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/ISession.Sync.cs -------------------------------------------------------------------------------- /Dashing/ISession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/ISession.cs -------------------------------------------------------------------------------- /Dashing/InMemoryDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/InMemoryDatabase.cs -------------------------------------------------------------------------------- /Dashing/Logging/ILog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Logging/ILog.cs -------------------------------------------------------------------------------- /Dashing/Logging/ILogProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Logging/ILogProvider.cs -------------------------------------------------------------------------------- /Dashing/Logging/LogExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Logging/LogExtensions.cs -------------------------------------------------------------------------------- /Dashing/Logging/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Logging/LogLevel.cs -------------------------------------------------------------------------------- /Dashing/Logging/LogProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Logging/LogProvider.cs -------------------------------------------------------------------------------- /Dashing/Logging/LogProviders/DisposableAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Logging/LogProviders/DisposableAction.cs -------------------------------------------------------------------------------- /Dashing/Logging/LogProviders/LibLogException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Logging/LogProviders/LibLogException.cs -------------------------------------------------------------------------------- /Dashing/Logging/LogProviders/LogMessageFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Logging/LogProviders/LogMessageFormatter.cs -------------------------------------------------------------------------------- /Dashing/Logging/LogProviders/LogProviderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Logging/LogProviders/LogProviderBase.cs -------------------------------------------------------------------------------- /Dashing/Logging/LogProviders/LoupeLogProvidercs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Logging/LogProviders/LoupeLogProvidercs.cs -------------------------------------------------------------------------------- /Dashing/Logging/LogProviders/SerilogLogProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Logging/LogProviders/SerilogLogProvider.cs -------------------------------------------------------------------------------- /Dashing/Logging/LogProviders/TraceEventTypeValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Logging/LogProviders/TraceEventTypeValues.cs -------------------------------------------------------------------------------- /Dashing/Logging/LogProviders/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Logging/LogProviders/TypeExtensions.cs -------------------------------------------------------------------------------- /Dashing/Logging/LoggerDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Logging/LoggerDelegate.cs -------------------------------------------------------------------------------- /Dashing/Logging/LoggerExecutionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Logging/LoggerExecutionWrapper.cs -------------------------------------------------------------------------------- /Dashing/Migration/ColumnKeyValuePairEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Migration/ColumnKeyValuePairEqualityComparer.cs -------------------------------------------------------------------------------- /Dashing/Migration/ConnectionStringManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Migration/ConnectionStringManipulator.cs -------------------------------------------------------------------------------- /Dashing/Migration/IMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Migration/IMigrator.cs -------------------------------------------------------------------------------- /Dashing/Migration/IStatisticsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Migration/IStatisticsProvider.cs -------------------------------------------------------------------------------- /Dashing/Migration/MigrationPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Migration/MigrationPair.cs -------------------------------------------------------------------------------- /Dashing/Migration/Migrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Migration/Migrator.cs -------------------------------------------------------------------------------- /Dashing/Migration/Statistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Migration/Statistics.cs -------------------------------------------------------------------------------- /Dashing/Migration/StatisticsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Migration/StatisticsProvider.cs -------------------------------------------------------------------------------- /Dashing/Migration/StringBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Migration/StringBuilderExtensions.cs -------------------------------------------------------------------------------- /Dashing/Migration/TableNameEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Migration/TableNameEqualityComparer.cs -------------------------------------------------------------------------------- /Dashing/ModelGeneration/DefaultConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/ModelGeneration/DefaultConvention.cs -------------------------------------------------------------------------------- /Dashing/ModelGeneration/IConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/ModelGeneration/IConvention.cs -------------------------------------------------------------------------------- /Dashing/ModelGeneration/IModelGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/ModelGeneration/IModelGenerator.cs -------------------------------------------------------------------------------- /Dashing/ModelGeneration/ModelGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/ModelGeneration/ModelGenerator.cs -------------------------------------------------------------------------------- /Dashing/MultipleChoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/MultipleChoice.cs -------------------------------------------------------------------------------- /Dashing/OrderClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/OrderClause.cs -------------------------------------------------------------------------------- /Dashing/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Page.cs -------------------------------------------------------------------------------- /Dashing/ProjectedSelectQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/ProjectedSelectQuery.cs -------------------------------------------------------------------------------- /Dashing/ReverseEngineering/Column.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/ReverseEngineering/Column.cs -------------------------------------------------------------------------------- /Dashing/ReverseEngineering/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/ReverseEngineering/Configuration.cs -------------------------------------------------------------------------------- /Dashing/ReverseEngineering/DefaultConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/ReverseEngineering/DefaultConvention.cs -------------------------------------------------------------------------------- /Dashing/ReverseEngineering/Engineer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/ReverseEngineering/Engineer.cs -------------------------------------------------------------------------------- /Dashing/ReverseEngineering/IConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/ReverseEngineering/IConvention.cs -------------------------------------------------------------------------------- /Dashing/ReverseEngineering/IEngineer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/ReverseEngineering/IEngineer.cs -------------------------------------------------------------------------------- /Dashing/ReverseEngineering/IReverseEngineeringColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/ReverseEngineering/IReverseEngineeringColumn.cs -------------------------------------------------------------------------------- /Dashing/ReverseEngineering/IReverseEngineeringConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/ReverseEngineering/IReverseEngineeringConfiguration.cs -------------------------------------------------------------------------------- /Dashing/SchemaReading/BaseSchemaReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/SchemaReading/BaseSchemaReader.cs -------------------------------------------------------------------------------- /Dashing/SchemaReading/ColumnDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/SchemaReading/ColumnDto.cs -------------------------------------------------------------------------------- /Dashing/SchemaReading/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/SchemaReading/Database.cs -------------------------------------------------------------------------------- /Dashing/SchemaReading/ForeignKeyDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/SchemaReading/ForeignKeyDto.cs -------------------------------------------------------------------------------- /Dashing/SchemaReading/ISchemaReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/SchemaReading/ISchemaReader.cs -------------------------------------------------------------------------------- /Dashing/SchemaReading/IndexDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/SchemaReading/IndexDto.cs -------------------------------------------------------------------------------- /Dashing/SchemaReading/MySqlServerSchemaReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/SchemaReading/MySqlServerSchemaReader.cs -------------------------------------------------------------------------------- /Dashing/SchemaReading/SchemaReaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/SchemaReading/SchemaReaderFactory.cs -------------------------------------------------------------------------------- /Dashing/SchemaReading/SqlServerSchemaReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/SchemaReading/SqlServerSchemaReader.cs -------------------------------------------------------------------------------- /Dashing/SchemaReading/TableDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/SchemaReading/TableDto.cs -------------------------------------------------------------------------------- /Dashing/SchemaReading/TemporalType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/SchemaReading/TemporalType.cs -------------------------------------------------------------------------------- /Dashing/SelectQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/SelectQuery.cs -------------------------------------------------------------------------------- /Dashing/Session.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Session.Async.cs -------------------------------------------------------------------------------- /Dashing/Session.Extensions..cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Session.Extensions..cs -------------------------------------------------------------------------------- /Dashing/Session.Sync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Session.Sync.cs -------------------------------------------------------------------------------- /Dashing/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Session.cs -------------------------------------------------------------------------------- /Dashing/SessionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/SessionExtensions.cs -------------------------------------------------------------------------------- /Dashing/SqlDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/SqlDatabase.cs -------------------------------------------------------------------------------- /Dashing/Versioning/IVersionedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Dashing/Versioning/IVersionedEntity.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet/Dashing.Weaver.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/NuGet/Dashing.Weaver.targets -------------------------------------------------------------------------------- /NuGet/Init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/NuGet/Init.ps1 -------------------------------------------------------------------------------- /NuGet/Weave.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/NuGet/Weave.targets -------------------------------------------------------------------------------- /NuGet/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NuGet/dashing-cli.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/NuGet/dashing-cli.nuspec -------------------------------------------------------------------------------- /NuGet/dashing-weaver.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/NuGet/dashing-weaver.nuspec -------------------------------------------------------------------------------- /Nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Nuget.config -------------------------------------------------------------------------------- /Package Dashing.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/Package Dashing.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/_config.yml -------------------------------------------------------------------------------- /dashing-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/dashing-icon.png -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/assets/css/style.scss -------------------------------------------------------------------------------- /docs/async-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/async-support.md -------------------------------------------------------------------------------- /docs/background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/background.md -------------------------------------------------------------------------------- /docs/bulk-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/bulk-queries.md -------------------------------------------------------------------------------- /docs/configuration-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/configuration-basics.md -------------------------------------------------------------------------------- /docs/configuration-conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/configuration-conventions.md -------------------------------------------------------------------------------- /docs/configuration-indexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/configuration-indexes.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/dapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/dapper.md -------------------------------------------------------------------------------- /docs/fetching-associations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/fetching-associations.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/migrations.md -------------------------------------------------------------------------------- /docs/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/performance.md -------------------------------------------------------------------------------- /docs/queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/queries.md -------------------------------------------------------------------------------- /docs/saving-and-deleting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/saving-and-deleting.md -------------------------------------------------------------------------------- /docs/seeding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/seeding.md -------------------------------------------------------------------------------- /docs/selecting-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/selecting-data.md -------------------------------------------------------------------------------- /docs/sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/sessions.md -------------------------------------------------------------------------------- /docs/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/start.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/docs/testing.md -------------------------------------------------------------------------------- /references/Dapper/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/references/Dapper/Dapper.dll -------------------------------------------------------------------------------- /references/Dapper/Dapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/references/Dapper/Dapper.pdb -------------------------------------------------------------------------------- /references/Dapper/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/references/Dapper/Dapper.xml -------------------------------------------------------------------------------- /references/LightSpeed/Mindscape.LightSpeed.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/references/LightSpeed/Mindscape.LightSpeed.Linq.dll -------------------------------------------------------------------------------- /references/LightSpeed/Mindscape.LightSpeed.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/references/LightSpeed/Mindscape.LightSpeed.Linq.xml -------------------------------------------------------------------------------- /references/LightSpeed/Mindscape.LightSpeed.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/references/LightSpeed/Mindscape.LightSpeed.dll -------------------------------------------------------------------------------- /references/LightSpeed/Mindscape.LightSpeed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbstractLeap/dashing/HEAD/references/LightSpeed/Mindscape.LightSpeed.xml --------------------------------------------------------------------------------