├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── ---bug-report.md │ ├── ---feature request.md │ └── config.yml ├── dependabot.yml └── workflows │ ├── benchmarks.yml │ ├── build.yml │ ├── cla.yml │ ├── codeql-analysis.yml │ ├── devskim-analysis.yml │ ├── publish.yml │ ├── securitycodescan-analysis.yml │ └── shiftleft-analysis.yml ├── .gitignore ├── CLA.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── LICENSE ├── README.md ├── SECURITY.md ├── Venflow.sln ├── Venflow.snk ├── benchmarks ├── DeleteBatch.csv ├── DeleteBatch.md ├── DeleteSingle.csv ├── DeleteSingle.md ├── InsertBatch.csv ├── InsertBatch.md ├── InsertBatchWithRelations.csv ├── InsertBatchWithRelations.md ├── InsertSingle.csv ├── InsertSingle.md ├── InsertSingleWithRelations.csv ├── InsertSingleWithRelations.md ├── Instantiation.csv ├── Instantiation.md ├── QueryBatch.csv ├── QueryBatch.md ├── QueryBatchWithRelations.csv ├── QueryBatchWithRelations.md ├── QuerySingle.csv ├── QuerySingle.md ├── QuerySingleWithParameter.csv ├── QuerySingleWithParameter.md ├── QuerySingleWithRelations.csv ├── QuerySingleWithRelations.md ├── UpdateBatch.csv ├── UpdateBatch.md ├── UpdateSingle.csv └── UpdateSingle.md ├── docs ├── api │ ├── System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute.html │ ├── System.Runtime.CompilerServices.NullableAttribute.html │ ├── System.Runtime.CompilerServices.NullableContextAttribute.html │ ├── System.Runtime.CompilerServices.html │ ├── Venflow.AspNetCore.VenflowServiceCollectionExtensions.html │ ├── Venflow.AspNetCore.html │ ├── Venflow.Commands.IBaseInsertRelationBuilder-2.html │ ├── Venflow.Commands.IBaseQueryRelationBuilder-3.html │ ├── Venflow.Commands.IDeleteCommand-1.html │ ├── Venflow.Commands.IDeleteCommandBuilder-1.html │ ├── Venflow.Commands.IInsertCommand-1.html │ ├── Venflow.Commands.IInsertCommandBuilder-1.html │ ├── Venflow.Commands.IInsertRelationBuilder-2.html │ ├── Venflow.Commands.IPreCommandBuilder-2.html │ ├── Venflow.Commands.IQueryCommand-2.html │ ├── Venflow.Commands.IQueryCommandBuilder-2.html │ ├── Venflow.Commands.IQueryRelationBuilder-3.html │ ├── Venflow.Commands.ISpecficVenflowCommandBuilder-2.html │ ├── Venflow.Commands.IUpdateCommand-1.html │ ├── Venflow.Commands.IUpdateCommandBuilder-1.html │ ├── Venflow.Commands.IVenflowCommand-1.html │ ├── Venflow.Commands.IVenflowCommandBuilder-1.html │ ├── Venflow.Commands.html │ ├── Venflow.Database.html │ ├── Venflow.DatabaseConfigurationOptionsBuilder.html │ ├── Venflow.DatabaseOptionsBuilder-1.html │ ├── Venflow.Enums.CommandType.html │ ├── Venflow.Enums.ForeignTruncateOptions.html │ ├── Venflow.Enums.IdentityTruncateOptions.html │ ├── Venflow.Enums.JoinBehaviour.html │ ├── Venflow.Enums.LoggingBehavior.html │ ├── Venflow.Enums.html │ ├── Venflow.Extensions.Logging.DatabaseOptionsBuilderExtensions.html │ ├── Venflow.Extensions.Logging.html │ ├── Venflow.FormattableSqlStringBuilder.html │ ├── Venflow.IDatabaseTransaction.html │ ├── Venflow.IKey-2.html │ ├── Venflow.IKey.html │ ├── Venflow.IParameterTypeHandler.html │ ├── Venflow.InvalidEntityRelationException.html │ ├── Venflow.Json.JsonKeyConverterFactory.html │ ├── Venflow.Json.html │ ├── Venflow.Key-2.html │ ├── Venflow.KeyConverter.html │ ├── Venflow.LoggerCallback.html │ ├── Venflow.Modeling.Definitions.Builder.IEntityBuilder-1.html │ ├── Venflow.Modeling.Definitions.Builder.IForeignKeyRelationBuilder-2.html │ ├── Venflow.Modeling.Definitions.Builder.ILeftRelationBuilder-1.html │ ├── Venflow.Modeling.Definitions.Builder.IMultiRightRelationBuilder-2.html │ ├── Venflow.Modeling.Definitions.Builder.INotRequiredMultiRightRelationBuilder-2.html │ ├── Venflow.Modeling.Definitions.Builder.INotRequiredSingleRightRelationBuilder-2.html │ ├── Venflow.Modeling.Definitions.Builder.IPropertyBuilder.html │ ├── Venflow.Modeling.Definitions.Builder.IRequiredMultiRightRelationBuilder-2.html │ ├── Venflow.Modeling.Definitions.Builder.IRequiredSingleRightRelationBuilder-2.html │ ├── Venflow.Modeling.Definitions.Builder.html │ ├── Venflow.Modeling.Definitions.EntityConfiguration-1.html │ ├── Venflow.Modeling.Definitions.html │ ├── Venflow.NewtonsoftJson.NewtonsoftJsonKeyConverter.html │ ├── Venflow.NewtonsoftJson.html │ ├── Venflow.NpgsqlCommandExtensions.html │ ├── Venflow.NpgsqlQuotedNameTranslator.html │ ├── Venflow.ParameterTypeHandler.html │ ├── Venflow.Table-1.html │ ├── Venflow.TableBase-1.html │ ├── Venflow.TypeArgumentException.html │ ├── Venflow.VenflowConfiguration.html │ ├── Venflow.VenflowDbType.html │ ├── Venflow.html │ ├── index.html │ └── toc.html ├── docfx │ ├── .gitignore │ ├── api │ │ ├── .gitignore │ │ ├── System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute.html │ │ ├── System.Runtime.CompilerServices.NullableAttribute.html │ │ ├── System.Runtime.CompilerServices.NullableContextAttribute.html │ │ ├── System.Runtime.CompilerServices.html │ │ ├── Venflow.AspNetCore.VenflowServiceCollectionExtensions.html │ │ ├── Venflow.AspNetCore.html │ │ ├── Venflow.Commands.IBaseInsertRelationBuilder-2.html │ │ ├── Venflow.Commands.IBaseQueryRelationBuilder-3.html │ │ ├── Venflow.Commands.IDeleteCommand-1.html │ │ ├── Venflow.Commands.IDeleteCommandBuilder-1.html │ │ ├── Venflow.Commands.IInsertCommand-1.html │ │ ├── Venflow.Commands.IInsertCommandBuilder-1.html │ │ ├── Venflow.Commands.IInsertRelationBuilder-2.html │ │ ├── Venflow.Commands.IPreCommandBuilder-2.html │ │ ├── Venflow.Commands.IQueryCommand-2.html │ │ ├── Venflow.Commands.IQueryCommandBuilder-2.html │ │ ├── Venflow.Commands.IQueryRelationBuilder-3.html │ │ ├── Venflow.Commands.ISpecficVenflowCommandBuilder-2.html │ │ ├── Venflow.Commands.IUpdateCommand-1.html │ │ ├── Venflow.Commands.IUpdateCommandBuilder-1.html │ │ ├── Venflow.Commands.IVenflowCommand-1.html │ │ ├── Venflow.Commands.IVenflowCommandBuilder-1.html │ │ ├── Venflow.Commands.html │ │ ├── Venflow.Database.html │ │ ├── Venflow.DatabaseConfigurationOptionsBuilder.html │ │ ├── Venflow.DatabaseOptionsBuilder-1.html │ │ ├── Venflow.DatabaseOptionsBuilder.html │ │ ├── Venflow.Enums.CommandType.html │ │ ├── Venflow.Enums.ForeignTruncateOptions.html │ │ ├── Venflow.Enums.IdentityTruncateOptions.html │ │ ├── Venflow.Enums.JoinBehaviour.html │ │ ├── Venflow.Enums.LoggingBehavior.html │ │ ├── Venflow.Enums.html │ │ ├── Venflow.Extensions.Logging.DatabaseOptionsBuilderExtensions.html │ │ ├── Venflow.Extensions.Logging.html │ │ ├── Venflow.FormattableSqlStringBuilder.html │ │ ├── Venflow.IDatabaseTransaction.html │ │ ├── Venflow.IKey-2.html │ │ ├── Venflow.IKey.html │ │ ├── Venflow.IParameterTypeHandler.html │ │ ├── Venflow.InvalidEntityRelationException.html │ │ ├── Venflow.Json.JsonKeyConverterFacotry.html │ │ ├── Venflow.Json.JsonKeyConverterFactory.html │ │ ├── Venflow.Json.html │ │ ├── Venflow.Key-2.html │ │ ├── Venflow.KeyConverter.html │ │ ├── Venflow.LoggerCallback.html │ │ ├── Venflow.Modeling.Definitions.Builder.IForeignKeyRelationBuilder-2.html │ │ ├── Venflow.Modeling.Definitions.Builder.ILeftRelationBuilder-1.html │ │ ├── Venflow.Modeling.Definitions.Builder.IMultiRightRelationBuilder-2.html │ │ ├── Venflow.Modeling.Definitions.Builder.INotRequiredMultiRightRelationBuilder-2.html │ │ ├── Venflow.Modeling.Definitions.Builder.INotRequiredSingleRightRelationBuilder-2.html │ │ ├── Venflow.Modeling.Definitions.Builder.IRequiredMultiRightRelationBuilder-2.html │ │ ├── Venflow.Modeling.Definitions.Builder.IRequiredSingleRightRelationBuilder-2.html │ │ ├── Venflow.Modeling.Definitions.Builder.html │ │ ├── Venflow.Modeling.Definitions.EntityConfiguration-1.html │ │ ├── Venflow.Modeling.Definitions.html │ │ ├── Venflow.NewtonsoftJson.NewtonsoftJsonKeyConverter.html │ │ ├── Venflow.NewtonsoftJson.html │ │ ├── Venflow.NpgsqlCommandExtensions.html │ │ ├── Venflow.ParameterTypeHandler.html │ │ ├── Venflow.Table-1.html │ │ ├── Venflow.TableBase-1.html │ │ ├── Venflow.Tests.Keys.Key-1.html │ │ ├── Venflow.Tests.Keys.html │ │ ├── Venflow.TypeArgumentException.html │ │ ├── Venflow.VenflowConfiguration.html │ │ ├── Venflow.html │ │ ├── index.html │ │ ├── index.md │ │ └── toc.html │ ├── docfx.json │ ├── favicon.ico │ ├── filterConfig.yml │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── guides │ │ ├── advanced │ │ │ ├── aspnetcore.md │ │ │ ├── enums.md │ │ │ ├── interpolation.md │ │ │ ├── logging.md │ │ │ ├── logging_extensions.md │ │ │ ├── nullables.md │ │ │ ├── prepared_statements.md │ │ │ ├── query_command_cache.md │ │ │ ├── strong_key.md │ │ │ └── validation.md │ │ ├── getting_started │ │ │ ├── installation.md │ │ │ └── setup.md │ │ ├── introduction │ │ │ └── intro.md │ │ ├── operations │ │ │ ├── count.md │ │ │ ├── delete.md │ │ │ ├── execute.md │ │ │ ├── insert.md │ │ │ ├── query.md │ │ │ ├── truncate.md │ │ │ └── update.md │ │ └── toc.yml │ ├── images │ │ └── jetbrains_logo.png │ ├── index.json │ ├── index.md │ ├── logo.svg │ ├── search-stopwords.json │ ├── styles │ │ ├── dark.css │ │ ├── docfx.css │ │ ├── docfx.js │ │ ├── docfx.vendor.css │ │ ├── docfx.vendor.js │ │ ├── docfx.vendor.minify.css │ │ ├── gray.css │ │ ├── light.css │ │ ├── lunr.js │ │ ├── lunr.min.js │ │ ├── main.css │ │ ├── main.js │ │ ├── master.css │ │ ├── material.css │ │ ├── search-worker.js │ │ ├── styleswitcher.js │ │ ├── theme-switcher.css │ │ ├── tomorrow.css │ │ └── vs2015.css │ ├── templates │ │ └── light-dark-theme │ │ │ ├── README.md │ │ │ ├── discord.net-license.md │ │ │ ├── docfx-material-license.md │ │ │ ├── partials │ │ │ ├── affix.tmpl.partial │ │ │ ├── head.tmpl.partial │ │ │ └── scripts.tmpl.partial │ │ │ └── styles │ │ │ ├── dark.css │ │ │ ├── docfx.vendor.minify.css │ │ │ ├── gray.css │ │ │ ├── light.css │ │ │ ├── master.css │ │ │ ├── material.css │ │ │ ├── styleswitcher.js │ │ │ ├── theme-switcher.css │ │ │ ├── tomorrow.css │ │ │ └── vs2015.css │ ├── toc.yml │ ├── venflow.svg │ └── xrefmap.yml ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── guides │ ├── advanced │ │ ├── aspnetcore.html │ │ ├── enums.html │ │ ├── interpolation.html │ │ ├── logging.html │ │ ├── logging_extensions.html │ │ ├── nullables.html │ │ ├── prepared_statements.html │ │ ├── query_command_cache.html │ │ ├── strong_key.html │ │ └── validation.html │ ├── getting_started │ │ ├── installation.html │ │ └── setup.html │ ├── introduction │ │ └── intro.html │ ├── operations │ │ ├── count.html │ │ ├── delete.html │ │ ├── execute.html │ │ ├── insert.html │ │ ├── query.html │ │ ├── truncate.html │ │ └── update.html │ └── toc.html ├── images │ └── jetbrains_logo.png ├── index.html ├── index.json ├── logo.svg ├── manifest.json ├── search-stopwords.json ├── styles │ ├── dark.css │ ├── docfx.css │ ├── docfx.js │ ├── docfx.vendor.css │ ├── docfx.vendor.js │ ├── docfx.vendor.minify.css │ ├── gray.css │ ├── light.css │ ├── lunr.js │ ├── lunr.min.js │ ├── main.css │ ├── main.js │ ├── master.css │ ├── material.css │ ├── search-worker.js │ ├── styleswitcher.js │ ├── theme-switcher.css │ ├── tomorrow.css │ └── vs2015.css ├── toc.html ├── venflow.svg └── xrefmap.yml ├── images ├── icon.png ├── jetbrains_logo.png └── venflow.png ├── signatures └── version1 │ └── cla.json ├── src ├── Venflow.AspNetCore │ ├── ServiceCollectionExtensions.cs │ ├── Venflow.AspNetCore.csproj │ └── Venflow.AspNetCore.xml ├── Venflow.Extensions.Logging │ ├── DatabaseOptionsBuilderExtensions.cs │ ├── Venflow.Extensions.Logging.csproj │ └── Venflow.Extensions.Logging.xml ├── Venflow.Generators │ ├── Assemblies.cs │ ├── CompilationExtensions.cs │ ├── GeneratorExecutionContextExtensions.cs │ ├── KeyGenerator.cs │ ├── Properties │ │ ├── GeneratedKeyAttribute.cs │ │ └── launchSettings.json │ ├── Venflow.Generators.csproj │ └── Venflow.Generators.xml ├── Venflow.Keys │ ├── JsonKeyConverter.cs │ ├── Key.cs │ ├── KeyConverter.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── GlobalUsings.cs │ ├── Venflow.Keys.csproj │ └── Venflow.Keys.xml ├── Venflow.NewtonsoftJson │ ├── NewtonsoftJsonKeyConverter.cs │ ├── Venflow.NewtonsoftJson.csproj │ └── Venflow.NewtonsoftJson.xml └── Venflow │ ├── CastTypeHandler.cs │ ├── Commands │ ├── IBaseInsertRelationBuilder.cs │ ├── IBaseQueryRelationBuilder.cs │ ├── IDeleteCommand.cs │ ├── IDeleteCommandBuilder.cs │ ├── IInsertCommand.cs │ ├── IInsertCommandBuilder.cs │ ├── IInsertRelationBuilder.cs │ ├── IPreCommandBuilder.cs │ ├── IQueryCommand.cs │ ├── IQueryCommandBuilder.cs │ ├── IQueryRelationBuilder.cs │ ├── ISpecficVenflowCommandBuilder.cs │ ├── IUpdateCommand.cs │ ├── IUpdateCommandBuilder.cs │ ├── IVenflowCommand.cs │ ├── IVenflowCommandBuilder.cs │ ├── InsertCacheKey.cs │ ├── InsertCacheKeyComparer.cs │ ├── InsertRelationBuilder.cs │ ├── InterpolatedSqlExpressionConverter.cs │ ├── QueryCacheKey.cs │ ├── QueryCacheKeyComparer.cs │ ├── QueryRelationBuilder.cs │ ├── RelationBuilderValues.cs │ ├── RelationPath.cs │ ├── SqlQueryCacheKey.cs │ ├── SqlQueryCacheKeyComparer.cs │ ├── VenflowBaseCommand.cs │ ├── VenflowCommandBuilder.cs │ ├── VenflowDeleteCommand.cs │ ├── VenflowDeleteCommandBuilder.cs │ ├── VenflowInsertCommand.cs │ ├── VenflowInsertCommandBuilder.cs │ ├── VenflowQueryCommand.cs │ ├── VenflowQueryCommandBuilder.cs │ ├── VenflowUpdateCommand.cs │ └── VenflowUpdateCommandBuilder.cs │ ├── Database.cs │ ├── DatabaseConfiguration.cs │ ├── DatabaseConfigurationOptionsBuilder.cs │ ├── DatabaseOptionsBuilder.cs │ ├── DatabaseTransaction.cs │ ├── DualKeyCollection.cs │ ├── Dynamic │ ├── IL │ │ ├── IILBaseInst.cs │ │ ├── ILAsyncGenerator.cs │ │ ├── ILFieldInfo.cs │ │ ├── ILGeneratorExtensions.cs │ │ ├── ILGhostGenerator.cs │ │ ├── ILInst.cs │ │ └── ILSwitchBuilder.cs │ ├── IgnoresAccessChecksToAttribute.cs │ ├── Inserter │ │ ├── EntityRelationHolder.cs │ │ ├── InsertionFactory.cs │ │ ├── InsertionFactoryCompiler.cs │ │ └── InsertionSourceCompiler.cs │ ├── Instantiater │ │ └── DatabaseTableFactory.cs │ ├── Materializer │ │ ├── MaterializerFactory.cs │ │ ├── MaterializerFactoryCompiler.cs │ │ ├── MaterializerSourceCompiler.cs │ │ ├── QueryEntityHolder.cs │ │ └── SqlExpression.cs │ ├── NullableAttribute.cs │ ├── NullableContextAttribute.cs │ ├── Proxies │ │ ├── ChangeTracker.cs │ │ ├── ChangeTrackerFactory.cs │ │ └── IEntityProxy.cs │ ├── Retriever │ │ └── ValueRetrieverFactory.cs │ ├── SpanExtensions.cs │ └── TypeFactory.cs │ ├── Enums │ ├── ColumnListStringOptions.cs │ ├── ColumnOptions.cs │ ├── CommandType.cs │ ├── ForeignKeyLoaction.cs │ ├── ForeignTruncateOptions.cs │ ├── IdentityTruncateOptions.cs │ ├── InsertCacheKeyOptions.cs │ ├── JoinBehaviour.cs │ ├── LoggingBehaviour.cs │ ├── QueryGenerationOptions.cs │ ├── RelationPartType.cs │ ├── RelationType.cs │ └── SqlExpressionOptions.cs │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── FormattableSqlStringBuilder.cs │ ├── IParameterTypeHandler.cs │ ├── InvalidEntityRelationException.cs │ ├── Modeling │ ├── DatabaseConfigurationFactory.cs │ ├── Definitions │ │ ├── Builder │ │ │ ├── EntityBuilder.cs │ │ │ ├── IForeignKeyRelationBuilder.cs │ │ │ ├── ILeftRelationBuilder.cs │ │ │ ├── IMultiRightRelationBuilder.cs │ │ │ ├── INotRequiredMultiRightRelationBuilder.cs │ │ │ ├── INotRequiredSingleRightRelationBuilder.cs │ │ │ ├── IRequiredMultiRightRelationBuilder.cs │ │ │ ├── IRequiredSingleRightRelationBuilder.cs │ │ │ ├── PropertyBuilder.cs │ │ │ └── RightRelationBuilder.cs │ │ ├── ColumnDefinition.cs │ │ ├── EntityConfiguration.cs │ │ ├── EntityFactory.cs │ │ ├── EntityRelationDefinition.cs │ │ └── ExpressionExtensions.cs │ ├── Entity.cs │ ├── EntityColumn.cs │ ├── EntityColumnCollection.cs │ └── EntityRelation.cs │ ├── NpgsqlCommandExtensions.cs │ ├── NpgsqlDataReaderExtensions.cs │ ├── NpgsqlParameterExtensions.cs │ ├── NpgsqlQuotedNameTranslator.cs │ ├── ParameterTypeHandler.cs │ ├── Properties │ ├── AssemblyInfo.cs │ └── GlobalUsings.cs │ ├── PropertyInfoExtensions.cs │ ├── Table.cs │ ├── TableBase.cs │ ├── TrioKeyCollection.cs │ ├── TypeArgumentException.cs │ ├── TypeExtensions.cs │ ├── UInt64Handler.cs │ ├── Venflow.csproj │ ├── Venflow.xml │ ├── VenflowConfiguration.cs │ └── VenflowDbType.cs └── test ├── Directory.Build.props ├── Venflow.Benchmarks ├── BenchmarkHandler.cs ├── Benchmarks │ ├── BenchmarkBase.cs │ ├── DeleteBenchmarks │ │ ├── DeleteBatchAsyncBenchmark.cs │ │ └── DeleteSingleAsyncBenchmark.cs │ ├── InsertBenchmarks │ │ ├── InsertBatchAsyncBenchmark.cs │ │ ├── InsertBatchWithRelationsAsyncBenchmark.cs │ │ ├── InsertSingleAsyncBenchmark.cs │ │ └── InsertSingleWithRelationsAsyncBenchmark.cs │ ├── InstantiationBenchmark.cs │ ├── MiscBenchmarks.cs │ ├── QueryBenchmarks │ │ ├── QueryBatchAsyncBenchmark.cs │ │ ├── QueryBatchWithRelationsAsyncBenchmark.cs │ │ ├── QuerySingleAsyncBenchmark.cs │ │ ├── QuerySingleWithParameterAsyncBenchmark.cs │ │ └── QuerySingleWithRelationsAsyncBenchmark.cs │ └── UpdateBenchmarks │ │ ├── UpdateBatchAsyncBenchmark.cs │ │ └── UpdateSingleAsyncBenchmark.cs ├── Models │ ├── Configurations │ │ ├── BenchmarkDb.cs │ │ └── BenchmarkDbContext.cs │ ├── Email.cs │ ├── EmailContent.cs │ └── Person.cs ├── Startup.cs └── Venflow.Benchmarks.csproj ├── Venflow.Score ├── BenchResult.cs ├── Orm.cs ├── Startup.cs ├── StringExtensions.cs └── Venflow.Score.csproj ├── Venflow.Shared ├── SecretsHandler.cs └── Venflow.Shared.csproj ├── Venflow.Tests.Keys ├── Directory.Build.props ├── Key.cs ├── Venflow.Tests.Keys.csproj └── Venflow.Tests.Keys.xml └── Venflow.Tests ├── DatabaseTests └── RelationMapping.cs ├── DeleteTests ├── BatchDelete.cs └── SingleDelete.cs ├── GeneratorTests └── KeyGenerationTests.cs ├── InsertTests ├── BatchInsert.cs └── SingleInsert.cs ├── JsonTests ├── KeyConverter.cs ├── NewtonsoftJson.cs └── SystemJson.cs ├── LogTests └── LogTests.cs ├── MiscTests.cs ├── Models ├── Blog.cs ├── BlogConfiguration.cs ├── Dummy.cs ├── DummyEnum.cs ├── Email.cs ├── EmailConfiguration.cs ├── EmailContent.cs ├── Person.cs ├── PersonConfiguration.cs ├── PostgreEnum.cs ├── RelationDatabase.cs ├── ReverseEmail.cs ├── ReverseEmailConfiguration.cs ├── ReverseEmailContent.cs ├── ReverseEmailContentConfiguration.cs ├── ReversePerson.cs ├── ReverseRelationDatabase.cs ├── UncommonType.cs ├── User.cs └── UserConfiguration.cs ├── QueryTests ├── BatchQuery.cs ├── CustomQuery.cs ├── ExpressionQuery.cs └── SingleQuery.cs ├── SpecificTypes ├── CLREnumTests.cs ├── CLRUIntKeyTests.cs ├── CLRUIntTests.cs ├── GuidTests.cs ├── KeyTests.cs └── PostgresEnumTests.cs ├── TableExtensions.cs ├── TableTests.cs ├── TestBase.cs ├── TransactionTests └── TransactionTests.cs ├── UnitTestHandler.cs ├── UpdateTests ├── BatchUpdate.cs ├── CustomUpdate.cs └── SingleUpdate.cs ├── Venflow.Tests.csproj └── xunit.runner.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/.github/ISSUE_TEMPLATE/---bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---feature request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/.github/ISSUE_TEMPLATE/---feature request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/benchmarks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/.github/workflows/benchmarks.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/devskim-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/.github/workflows/devskim-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/securitycodescan-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/.github/workflows/securitycodescan-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/shiftleft-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/.github/workflows/shiftleft-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/.gitignore -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/CLA.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Venflow.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/Venflow.sln -------------------------------------------------------------------------------- /Venflow.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/Venflow.snk -------------------------------------------------------------------------------- /benchmarks/DeleteBatch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/DeleteBatch.csv -------------------------------------------------------------------------------- /benchmarks/DeleteBatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/DeleteBatch.md -------------------------------------------------------------------------------- /benchmarks/DeleteSingle.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/DeleteSingle.csv -------------------------------------------------------------------------------- /benchmarks/DeleteSingle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/DeleteSingle.md -------------------------------------------------------------------------------- /benchmarks/InsertBatch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/InsertBatch.csv -------------------------------------------------------------------------------- /benchmarks/InsertBatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/InsertBatch.md -------------------------------------------------------------------------------- /benchmarks/InsertBatchWithRelations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/InsertBatchWithRelations.csv -------------------------------------------------------------------------------- /benchmarks/InsertBatchWithRelations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/InsertBatchWithRelations.md -------------------------------------------------------------------------------- /benchmarks/InsertSingle.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/InsertSingle.csv -------------------------------------------------------------------------------- /benchmarks/InsertSingle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/InsertSingle.md -------------------------------------------------------------------------------- /benchmarks/InsertSingleWithRelations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/InsertSingleWithRelations.csv -------------------------------------------------------------------------------- /benchmarks/InsertSingleWithRelations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/InsertSingleWithRelations.md -------------------------------------------------------------------------------- /benchmarks/Instantiation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/Instantiation.csv -------------------------------------------------------------------------------- /benchmarks/Instantiation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/Instantiation.md -------------------------------------------------------------------------------- /benchmarks/QueryBatch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/QueryBatch.csv -------------------------------------------------------------------------------- /benchmarks/QueryBatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/QueryBatch.md -------------------------------------------------------------------------------- /benchmarks/QueryBatchWithRelations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/QueryBatchWithRelations.csv -------------------------------------------------------------------------------- /benchmarks/QueryBatchWithRelations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/QueryBatchWithRelations.md -------------------------------------------------------------------------------- /benchmarks/QuerySingle.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/QuerySingle.csv -------------------------------------------------------------------------------- /benchmarks/QuerySingle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/QuerySingle.md -------------------------------------------------------------------------------- /benchmarks/QuerySingleWithParameter.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/QuerySingleWithParameter.csv -------------------------------------------------------------------------------- /benchmarks/QuerySingleWithParameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/QuerySingleWithParameter.md -------------------------------------------------------------------------------- /benchmarks/QuerySingleWithRelations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/QuerySingleWithRelations.csv -------------------------------------------------------------------------------- /benchmarks/QuerySingleWithRelations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/QuerySingleWithRelations.md -------------------------------------------------------------------------------- /benchmarks/UpdateBatch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/UpdateBatch.csv -------------------------------------------------------------------------------- /benchmarks/UpdateBatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/UpdateBatch.md -------------------------------------------------------------------------------- /benchmarks/UpdateSingle.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/UpdateSingle.csv -------------------------------------------------------------------------------- /benchmarks/UpdateSingle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/benchmarks/UpdateSingle.md -------------------------------------------------------------------------------- /docs/api/System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute.html -------------------------------------------------------------------------------- /docs/api/System.Runtime.CompilerServices.NullableAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/System.Runtime.CompilerServices.NullableAttribute.html -------------------------------------------------------------------------------- /docs/api/System.Runtime.CompilerServices.NullableContextAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/System.Runtime.CompilerServices.NullableContextAttribute.html -------------------------------------------------------------------------------- /docs/api/System.Runtime.CompilerServices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/System.Runtime.CompilerServices.html -------------------------------------------------------------------------------- /docs/api/Venflow.AspNetCore.VenflowServiceCollectionExtensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.AspNetCore.VenflowServiceCollectionExtensions.html -------------------------------------------------------------------------------- /docs/api/Venflow.AspNetCore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.AspNetCore.html -------------------------------------------------------------------------------- /docs/api/Venflow.Commands.IBaseInsertRelationBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Commands.IBaseInsertRelationBuilder-2.html -------------------------------------------------------------------------------- /docs/api/Venflow.Commands.IBaseQueryRelationBuilder-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Commands.IBaseQueryRelationBuilder-3.html -------------------------------------------------------------------------------- /docs/api/Venflow.Commands.IDeleteCommand-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Commands.IDeleteCommand-1.html -------------------------------------------------------------------------------- /docs/api/Venflow.Commands.IDeleteCommandBuilder-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Commands.IDeleteCommandBuilder-1.html -------------------------------------------------------------------------------- /docs/api/Venflow.Commands.IInsertCommand-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Commands.IInsertCommand-1.html -------------------------------------------------------------------------------- /docs/api/Venflow.Commands.IInsertCommandBuilder-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Commands.IInsertCommandBuilder-1.html -------------------------------------------------------------------------------- /docs/api/Venflow.Commands.IInsertRelationBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Commands.IInsertRelationBuilder-2.html -------------------------------------------------------------------------------- /docs/api/Venflow.Commands.IPreCommandBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Commands.IPreCommandBuilder-2.html -------------------------------------------------------------------------------- /docs/api/Venflow.Commands.IQueryCommand-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Commands.IQueryCommand-2.html -------------------------------------------------------------------------------- /docs/api/Venflow.Commands.IQueryCommandBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Commands.IQueryCommandBuilder-2.html -------------------------------------------------------------------------------- /docs/api/Venflow.Commands.IQueryRelationBuilder-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Commands.IQueryRelationBuilder-3.html -------------------------------------------------------------------------------- /docs/api/Venflow.Commands.ISpecficVenflowCommandBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Commands.ISpecficVenflowCommandBuilder-2.html -------------------------------------------------------------------------------- /docs/api/Venflow.Commands.IUpdateCommand-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Commands.IUpdateCommand-1.html -------------------------------------------------------------------------------- /docs/api/Venflow.Commands.IUpdateCommandBuilder-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Commands.IUpdateCommandBuilder-1.html -------------------------------------------------------------------------------- /docs/api/Venflow.Commands.IVenflowCommand-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Commands.IVenflowCommand-1.html -------------------------------------------------------------------------------- /docs/api/Venflow.Commands.IVenflowCommandBuilder-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Commands.IVenflowCommandBuilder-1.html -------------------------------------------------------------------------------- /docs/api/Venflow.Commands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Commands.html -------------------------------------------------------------------------------- /docs/api/Venflow.Database.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Database.html -------------------------------------------------------------------------------- /docs/api/Venflow.DatabaseConfigurationOptionsBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.DatabaseConfigurationOptionsBuilder.html -------------------------------------------------------------------------------- /docs/api/Venflow.DatabaseOptionsBuilder-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.DatabaseOptionsBuilder-1.html -------------------------------------------------------------------------------- /docs/api/Venflow.Enums.CommandType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Enums.CommandType.html -------------------------------------------------------------------------------- /docs/api/Venflow.Enums.ForeignTruncateOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Enums.ForeignTruncateOptions.html -------------------------------------------------------------------------------- /docs/api/Venflow.Enums.IdentityTruncateOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Enums.IdentityTruncateOptions.html -------------------------------------------------------------------------------- /docs/api/Venflow.Enums.JoinBehaviour.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Enums.JoinBehaviour.html -------------------------------------------------------------------------------- /docs/api/Venflow.Enums.LoggingBehavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Enums.LoggingBehavior.html -------------------------------------------------------------------------------- /docs/api/Venflow.Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Enums.html -------------------------------------------------------------------------------- /docs/api/Venflow.Extensions.Logging.DatabaseOptionsBuilderExtensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Extensions.Logging.DatabaseOptionsBuilderExtensions.html -------------------------------------------------------------------------------- /docs/api/Venflow.Extensions.Logging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Extensions.Logging.html -------------------------------------------------------------------------------- /docs/api/Venflow.FormattableSqlStringBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.FormattableSqlStringBuilder.html -------------------------------------------------------------------------------- /docs/api/Venflow.IDatabaseTransaction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.IDatabaseTransaction.html -------------------------------------------------------------------------------- /docs/api/Venflow.IKey-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.IKey-2.html -------------------------------------------------------------------------------- /docs/api/Venflow.IKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.IKey.html -------------------------------------------------------------------------------- /docs/api/Venflow.IParameterTypeHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.IParameterTypeHandler.html -------------------------------------------------------------------------------- /docs/api/Venflow.InvalidEntityRelationException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.InvalidEntityRelationException.html -------------------------------------------------------------------------------- /docs/api/Venflow.Json.JsonKeyConverterFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Json.JsonKeyConverterFactory.html -------------------------------------------------------------------------------- /docs/api/Venflow.Json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Json.html -------------------------------------------------------------------------------- /docs/api/Venflow.Key-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Key-2.html -------------------------------------------------------------------------------- /docs/api/Venflow.KeyConverter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.KeyConverter.html -------------------------------------------------------------------------------- /docs/api/Venflow.LoggerCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.LoggerCallback.html -------------------------------------------------------------------------------- /docs/api/Venflow.Modeling.Definitions.Builder.IEntityBuilder-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Modeling.Definitions.Builder.IEntityBuilder-1.html -------------------------------------------------------------------------------- /docs/api/Venflow.Modeling.Definitions.Builder.IForeignKeyRelationBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Modeling.Definitions.Builder.IForeignKeyRelationBuilder-2.html -------------------------------------------------------------------------------- /docs/api/Venflow.Modeling.Definitions.Builder.ILeftRelationBuilder-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Modeling.Definitions.Builder.ILeftRelationBuilder-1.html -------------------------------------------------------------------------------- /docs/api/Venflow.Modeling.Definitions.Builder.IMultiRightRelationBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Modeling.Definitions.Builder.IMultiRightRelationBuilder-2.html -------------------------------------------------------------------------------- /docs/api/Venflow.Modeling.Definitions.Builder.INotRequiredMultiRightRelationBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Modeling.Definitions.Builder.INotRequiredMultiRightRelationBuilder-2.html -------------------------------------------------------------------------------- /docs/api/Venflow.Modeling.Definitions.Builder.INotRequiredSingleRightRelationBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Modeling.Definitions.Builder.INotRequiredSingleRightRelationBuilder-2.html -------------------------------------------------------------------------------- /docs/api/Venflow.Modeling.Definitions.Builder.IPropertyBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Modeling.Definitions.Builder.IPropertyBuilder.html -------------------------------------------------------------------------------- /docs/api/Venflow.Modeling.Definitions.Builder.IRequiredMultiRightRelationBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Modeling.Definitions.Builder.IRequiredMultiRightRelationBuilder-2.html -------------------------------------------------------------------------------- /docs/api/Venflow.Modeling.Definitions.Builder.IRequiredSingleRightRelationBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Modeling.Definitions.Builder.IRequiredSingleRightRelationBuilder-2.html -------------------------------------------------------------------------------- /docs/api/Venflow.Modeling.Definitions.Builder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Modeling.Definitions.Builder.html -------------------------------------------------------------------------------- /docs/api/Venflow.Modeling.Definitions.EntityConfiguration-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Modeling.Definitions.EntityConfiguration-1.html -------------------------------------------------------------------------------- /docs/api/Venflow.Modeling.Definitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Modeling.Definitions.html -------------------------------------------------------------------------------- /docs/api/Venflow.NewtonsoftJson.NewtonsoftJsonKeyConverter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.NewtonsoftJson.NewtonsoftJsonKeyConverter.html -------------------------------------------------------------------------------- /docs/api/Venflow.NewtonsoftJson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.NewtonsoftJson.html -------------------------------------------------------------------------------- /docs/api/Venflow.NpgsqlCommandExtensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.NpgsqlCommandExtensions.html -------------------------------------------------------------------------------- /docs/api/Venflow.NpgsqlQuotedNameTranslator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.NpgsqlQuotedNameTranslator.html -------------------------------------------------------------------------------- /docs/api/Venflow.ParameterTypeHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.ParameterTypeHandler.html -------------------------------------------------------------------------------- /docs/api/Venflow.Table-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.Table-1.html -------------------------------------------------------------------------------- /docs/api/Venflow.TableBase-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.TableBase-1.html -------------------------------------------------------------------------------- /docs/api/Venflow.TypeArgumentException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.TypeArgumentException.html -------------------------------------------------------------------------------- /docs/api/Venflow.VenflowConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.VenflowConfiguration.html -------------------------------------------------------------------------------- /docs/api/Venflow.VenflowDbType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.VenflowDbType.html -------------------------------------------------------------------------------- /docs/api/Venflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/Venflow.html -------------------------------------------------------------------------------- /docs/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/index.html -------------------------------------------------------------------------------- /docs/api/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/api/toc.html -------------------------------------------------------------------------------- /docs/docfx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/.gitignore -------------------------------------------------------------------------------- /docs/docfx/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/.gitignore -------------------------------------------------------------------------------- /docs/docfx/api/System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute.html -------------------------------------------------------------------------------- /docs/docfx/api/System.Runtime.CompilerServices.NullableAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/System.Runtime.CompilerServices.NullableAttribute.html -------------------------------------------------------------------------------- /docs/docfx/api/System.Runtime.CompilerServices.NullableContextAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/System.Runtime.CompilerServices.NullableContextAttribute.html -------------------------------------------------------------------------------- /docs/docfx/api/System.Runtime.CompilerServices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/System.Runtime.CompilerServices.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.AspNetCore.VenflowServiceCollectionExtensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.AspNetCore.VenflowServiceCollectionExtensions.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.AspNetCore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.AspNetCore.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Commands.IBaseInsertRelationBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Commands.IBaseInsertRelationBuilder-2.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Commands.IBaseQueryRelationBuilder-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Commands.IBaseQueryRelationBuilder-3.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Commands.IDeleteCommand-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Commands.IDeleteCommand-1.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Commands.IDeleteCommandBuilder-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Commands.IDeleteCommandBuilder-1.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Commands.IInsertCommand-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Commands.IInsertCommand-1.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Commands.IInsertCommandBuilder-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Commands.IInsertCommandBuilder-1.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Commands.IInsertRelationBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Commands.IInsertRelationBuilder-2.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Commands.IPreCommandBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Commands.IPreCommandBuilder-2.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Commands.IQueryCommand-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Commands.IQueryCommand-2.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Commands.IQueryCommandBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Commands.IQueryCommandBuilder-2.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Commands.IQueryRelationBuilder-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Commands.IQueryRelationBuilder-3.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Commands.ISpecficVenflowCommandBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Commands.ISpecficVenflowCommandBuilder-2.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Commands.IUpdateCommand-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Commands.IUpdateCommand-1.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Commands.IUpdateCommandBuilder-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Commands.IUpdateCommandBuilder-1.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Commands.IVenflowCommand-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Commands.IVenflowCommand-1.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Commands.IVenflowCommandBuilder-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Commands.IVenflowCommandBuilder-1.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Commands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Commands.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Database.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Database.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.DatabaseConfigurationOptionsBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.DatabaseConfigurationOptionsBuilder.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.DatabaseOptionsBuilder-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.DatabaseOptionsBuilder-1.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.DatabaseOptionsBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.DatabaseOptionsBuilder.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Enums.CommandType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Enums.CommandType.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Enums.ForeignTruncateOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Enums.ForeignTruncateOptions.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Enums.IdentityTruncateOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Enums.IdentityTruncateOptions.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Enums.JoinBehaviour.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Enums.JoinBehaviour.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Enums.LoggingBehavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Enums.LoggingBehavior.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Enums.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Extensions.Logging.DatabaseOptionsBuilderExtensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Extensions.Logging.DatabaseOptionsBuilderExtensions.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Extensions.Logging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Extensions.Logging.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.FormattableSqlStringBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.FormattableSqlStringBuilder.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.IDatabaseTransaction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.IDatabaseTransaction.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.IKey-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.IKey-2.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.IKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.IKey.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.IParameterTypeHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.IParameterTypeHandler.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.InvalidEntityRelationException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.InvalidEntityRelationException.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Json.JsonKeyConverterFacotry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Json.JsonKeyConverterFacotry.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Json.JsonKeyConverterFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Json.JsonKeyConverterFactory.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Json.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Key-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Key-2.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.KeyConverter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.KeyConverter.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.LoggerCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.LoggerCallback.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Modeling.Definitions.Builder.IForeignKeyRelationBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Modeling.Definitions.Builder.IForeignKeyRelationBuilder-2.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Modeling.Definitions.Builder.ILeftRelationBuilder-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Modeling.Definitions.Builder.ILeftRelationBuilder-1.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Modeling.Definitions.Builder.IMultiRightRelationBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Modeling.Definitions.Builder.IMultiRightRelationBuilder-2.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Modeling.Definitions.Builder.INotRequiredMultiRightRelationBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Modeling.Definitions.Builder.INotRequiredMultiRightRelationBuilder-2.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Modeling.Definitions.Builder.INotRequiredSingleRightRelationBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Modeling.Definitions.Builder.INotRequiredSingleRightRelationBuilder-2.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Modeling.Definitions.Builder.IRequiredMultiRightRelationBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Modeling.Definitions.Builder.IRequiredMultiRightRelationBuilder-2.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Modeling.Definitions.Builder.IRequiredSingleRightRelationBuilder-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Modeling.Definitions.Builder.IRequiredSingleRightRelationBuilder-2.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Modeling.Definitions.Builder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Modeling.Definitions.Builder.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Modeling.Definitions.EntityConfiguration-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Modeling.Definitions.EntityConfiguration-1.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Modeling.Definitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Modeling.Definitions.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.NewtonsoftJson.NewtonsoftJsonKeyConverter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.NewtonsoftJson.NewtonsoftJsonKeyConverter.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.NewtonsoftJson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.NewtonsoftJson.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.NpgsqlCommandExtensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.NpgsqlCommandExtensions.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.ParameterTypeHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.ParameterTypeHandler.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Table-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Table-1.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.TableBase-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.TableBase-1.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Tests.Keys.Key-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Tests.Keys.Key-1.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.Tests.Keys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.Tests.Keys.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.TypeArgumentException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.TypeArgumentException.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.VenflowConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.VenflowConfiguration.html -------------------------------------------------------------------------------- /docs/docfx/api/Venflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/Venflow.html -------------------------------------------------------------------------------- /docs/docfx/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/index.html -------------------------------------------------------------------------------- /docs/docfx/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/index.md -------------------------------------------------------------------------------- /docs/docfx/api/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/api/toc.html -------------------------------------------------------------------------------- /docs/docfx/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/docfx.json -------------------------------------------------------------------------------- /docs/docfx/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/favicon.ico -------------------------------------------------------------------------------- /docs/docfx/filterConfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/filterConfig.yml -------------------------------------------------------------------------------- /docs/docfx/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/docfx/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/docfx/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/docfx/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/docfx/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/docfx/guides/advanced/aspnetcore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/advanced/aspnetcore.md -------------------------------------------------------------------------------- /docs/docfx/guides/advanced/enums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/advanced/enums.md -------------------------------------------------------------------------------- /docs/docfx/guides/advanced/interpolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/advanced/interpolation.md -------------------------------------------------------------------------------- /docs/docfx/guides/advanced/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/advanced/logging.md -------------------------------------------------------------------------------- /docs/docfx/guides/advanced/logging_extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/advanced/logging_extensions.md -------------------------------------------------------------------------------- /docs/docfx/guides/advanced/nullables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/advanced/nullables.md -------------------------------------------------------------------------------- /docs/docfx/guides/advanced/prepared_statements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/advanced/prepared_statements.md -------------------------------------------------------------------------------- /docs/docfx/guides/advanced/query_command_cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/advanced/query_command_cache.md -------------------------------------------------------------------------------- /docs/docfx/guides/advanced/strong_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/advanced/strong_key.md -------------------------------------------------------------------------------- /docs/docfx/guides/advanced/validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/advanced/validation.md -------------------------------------------------------------------------------- /docs/docfx/guides/getting_started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/getting_started/installation.md -------------------------------------------------------------------------------- /docs/docfx/guides/getting_started/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/getting_started/setup.md -------------------------------------------------------------------------------- /docs/docfx/guides/introduction/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/introduction/intro.md -------------------------------------------------------------------------------- /docs/docfx/guides/operations/count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/operations/count.md -------------------------------------------------------------------------------- /docs/docfx/guides/operations/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/operations/delete.md -------------------------------------------------------------------------------- /docs/docfx/guides/operations/execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/operations/execute.md -------------------------------------------------------------------------------- /docs/docfx/guides/operations/insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/operations/insert.md -------------------------------------------------------------------------------- /docs/docfx/guides/operations/query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/operations/query.md -------------------------------------------------------------------------------- /docs/docfx/guides/operations/truncate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/operations/truncate.md -------------------------------------------------------------------------------- /docs/docfx/guides/operations/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/operations/update.md -------------------------------------------------------------------------------- /docs/docfx/guides/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/guides/toc.yml -------------------------------------------------------------------------------- /docs/docfx/images/jetbrains_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/images/jetbrains_logo.png -------------------------------------------------------------------------------- /docs/docfx/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/index.json -------------------------------------------------------------------------------- /docs/docfx/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/index.md -------------------------------------------------------------------------------- /docs/docfx/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/logo.svg -------------------------------------------------------------------------------- /docs/docfx/search-stopwords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/search-stopwords.json -------------------------------------------------------------------------------- /docs/docfx/styles/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/styles/dark.css -------------------------------------------------------------------------------- /docs/docfx/styles/docfx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/styles/docfx.css -------------------------------------------------------------------------------- /docs/docfx/styles/docfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/styles/docfx.js -------------------------------------------------------------------------------- /docs/docfx/styles/docfx.vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/styles/docfx.vendor.css -------------------------------------------------------------------------------- /docs/docfx/styles/docfx.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/styles/docfx.vendor.js -------------------------------------------------------------------------------- /docs/docfx/styles/docfx.vendor.minify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/styles/docfx.vendor.minify.css -------------------------------------------------------------------------------- /docs/docfx/styles/gray.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/styles/gray.css -------------------------------------------------------------------------------- /docs/docfx/styles/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/styles/light.css -------------------------------------------------------------------------------- /docs/docfx/styles/lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/styles/lunr.js -------------------------------------------------------------------------------- /docs/docfx/styles/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/styles/lunr.min.js -------------------------------------------------------------------------------- /docs/docfx/styles/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/docfx/styles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/styles/main.js -------------------------------------------------------------------------------- /docs/docfx/styles/master.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/styles/master.css -------------------------------------------------------------------------------- /docs/docfx/styles/material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/styles/material.css -------------------------------------------------------------------------------- /docs/docfx/styles/search-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/styles/search-worker.js -------------------------------------------------------------------------------- /docs/docfx/styles/styleswitcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/styles/styleswitcher.js -------------------------------------------------------------------------------- /docs/docfx/styles/theme-switcher.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/styles/theme-switcher.css -------------------------------------------------------------------------------- /docs/docfx/styles/tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/styles/tomorrow.css -------------------------------------------------------------------------------- /docs/docfx/styles/vs2015.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/styles/vs2015.css -------------------------------------------------------------------------------- /docs/docfx/templates/light-dark-theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/templates/light-dark-theme/README.md -------------------------------------------------------------------------------- /docs/docfx/templates/light-dark-theme/discord.net-license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/templates/light-dark-theme/discord.net-license.md -------------------------------------------------------------------------------- /docs/docfx/templates/light-dark-theme/docfx-material-license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/templates/light-dark-theme/docfx-material-license.md -------------------------------------------------------------------------------- /docs/docfx/templates/light-dark-theme/partials/affix.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/templates/light-dark-theme/partials/affix.tmpl.partial -------------------------------------------------------------------------------- /docs/docfx/templates/light-dark-theme/partials/head.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/templates/light-dark-theme/partials/head.tmpl.partial -------------------------------------------------------------------------------- /docs/docfx/templates/light-dark-theme/partials/scripts.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/templates/light-dark-theme/partials/scripts.tmpl.partial -------------------------------------------------------------------------------- /docs/docfx/templates/light-dark-theme/styles/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/templates/light-dark-theme/styles/dark.css -------------------------------------------------------------------------------- /docs/docfx/templates/light-dark-theme/styles/docfx.vendor.minify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/templates/light-dark-theme/styles/docfx.vendor.minify.css -------------------------------------------------------------------------------- /docs/docfx/templates/light-dark-theme/styles/gray.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/templates/light-dark-theme/styles/gray.css -------------------------------------------------------------------------------- /docs/docfx/templates/light-dark-theme/styles/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/templates/light-dark-theme/styles/light.css -------------------------------------------------------------------------------- /docs/docfx/templates/light-dark-theme/styles/master.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/templates/light-dark-theme/styles/master.css -------------------------------------------------------------------------------- /docs/docfx/templates/light-dark-theme/styles/material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/templates/light-dark-theme/styles/material.css -------------------------------------------------------------------------------- /docs/docfx/templates/light-dark-theme/styles/styleswitcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/templates/light-dark-theme/styles/styleswitcher.js -------------------------------------------------------------------------------- /docs/docfx/templates/light-dark-theme/styles/theme-switcher.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/templates/light-dark-theme/styles/theme-switcher.css -------------------------------------------------------------------------------- /docs/docfx/templates/light-dark-theme/styles/tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/templates/light-dark-theme/styles/tomorrow.css -------------------------------------------------------------------------------- /docs/docfx/templates/light-dark-theme/styles/vs2015.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/templates/light-dark-theme/styles/vs2015.css -------------------------------------------------------------------------------- /docs/docfx/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/toc.yml -------------------------------------------------------------------------------- /docs/docfx/venflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/venflow.svg -------------------------------------------------------------------------------- /docs/docfx/xrefmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/docfx/xrefmap.yml -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/guides/advanced/aspnetcore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/advanced/aspnetcore.html -------------------------------------------------------------------------------- /docs/guides/advanced/enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/advanced/enums.html -------------------------------------------------------------------------------- /docs/guides/advanced/interpolation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/advanced/interpolation.html -------------------------------------------------------------------------------- /docs/guides/advanced/logging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/advanced/logging.html -------------------------------------------------------------------------------- /docs/guides/advanced/logging_extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/advanced/logging_extensions.html -------------------------------------------------------------------------------- /docs/guides/advanced/nullables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/advanced/nullables.html -------------------------------------------------------------------------------- /docs/guides/advanced/prepared_statements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/advanced/prepared_statements.html -------------------------------------------------------------------------------- /docs/guides/advanced/query_command_cache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/advanced/query_command_cache.html -------------------------------------------------------------------------------- /docs/guides/advanced/strong_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/advanced/strong_key.html -------------------------------------------------------------------------------- /docs/guides/advanced/validation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/advanced/validation.html -------------------------------------------------------------------------------- /docs/guides/getting_started/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/getting_started/installation.html -------------------------------------------------------------------------------- /docs/guides/getting_started/setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/getting_started/setup.html -------------------------------------------------------------------------------- /docs/guides/introduction/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/introduction/intro.html -------------------------------------------------------------------------------- /docs/guides/operations/count.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/operations/count.html -------------------------------------------------------------------------------- /docs/guides/operations/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/operations/delete.html -------------------------------------------------------------------------------- /docs/guides/operations/execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/operations/execute.html -------------------------------------------------------------------------------- /docs/guides/operations/insert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/operations/insert.html -------------------------------------------------------------------------------- /docs/guides/operations/query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/operations/query.html -------------------------------------------------------------------------------- /docs/guides/operations/truncate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/operations/truncate.html -------------------------------------------------------------------------------- /docs/guides/operations/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/operations/update.html -------------------------------------------------------------------------------- /docs/guides/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/guides/toc.html -------------------------------------------------------------------------------- /docs/images/jetbrains_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/images/jetbrains_logo.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/index.json -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /docs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/manifest.json -------------------------------------------------------------------------------- /docs/search-stopwords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/search-stopwords.json -------------------------------------------------------------------------------- /docs/styles/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/styles/dark.css -------------------------------------------------------------------------------- /docs/styles/docfx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/styles/docfx.css -------------------------------------------------------------------------------- /docs/styles/docfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/styles/docfx.js -------------------------------------------------------------------------------- /docs/styles/docfx.vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/styles/docfx.vendor.css -------------------------------------------------------------------------------- /docs/styles/docfx.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/styles/docfx.vendor.js -------------------------------------------------------------------------------- /docs/styles/docfx.vendor.minify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/styles/docfx.vendor.minify.css -------------------------------------------------------------------------------- /docs/styles/gray.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/styles/gray.css -------------------------------------------------------------------------------- /docs/styles/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/styles/light.css -------------------------------------------------------------------------------- /docs/styles/lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/styles/lunr.js -------------------------------------------------------------------------------- /docs/styles/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/styles/lunr.min.js -------------------------------------------------------------------------------- /docs/styles/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/styles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/styles/main.js -------------------------------------------------------------------------------- /docs/styles/master.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/styles/master.css -------------------------------------------------------------------------------- /docs/styles/material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/styles/material.css -------------------------------------------------------------------------------- /docs/styles/search-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/styles/search-worker.js -------------------------------------------------------------------------------- /docs/styles/styleswitcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/styles/styleswitcher.js -------------------------------------------------------------------------------- /docs/styles/theme-switcher.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/styles/theme-switcher.css -------------------------------------------------------------------------------- /docs/styles/tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/styles/tomorrow.css -------------------------------------------------------------------------------- /docs/styles/vs2015.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/styles/vs2015.css -------------------------------------------------------------------------------- /docs/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/toc.html -------------------------------------------------------------------------------- /docs/venflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/venflow.svg -------------------------------------------------------------------------------- /docs/xrefmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/docs/xrefmap.yml -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/jetbrains_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/images/jetbrains_logo.png -------------------------------------------------------------------------------- /images/venflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/images/venflow.png -------------------------------------------------------------------------------- /signatures/version1/cla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/signatures/version1/cla.json -------------------------------------------------------------------------------- /src/Venflow.AspNetCore/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.AspNetCore/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Venflow.AspNetCore/Venflow.AspNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.AspNetCore/Venflow.AspNetCore.csproj -------------------------------------------------------------------------------- /src/Venflow.AspNetCore/Venflow.AspNetCore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.AspNetCore/Venflow.AspNetCore.xml -------------------------------------------------------------------------------- /src/Venflow.Extensions.Logging/DatabaseOptionsBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.Extensions.Logging/DatabaseOptionsBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Venflow.Extensions.Logging/Venflow.Extensions.Logging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.Extensions.Logging/Venflow.Extensions.Logging.csproj -------------------------------------------------------------------------------- /src/Venflow.Extensions.Logging/Venflow.Extensions.Logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.Extensions.Logging/Venflow.Extensions.Logging.xml -------------------------------------------------------------------------------- /src/Venflow.Generators/Assemblies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.Generators/Assemblies.cs -------------------------------------------------------------------------------- /src/Venflow.Generators/CompilationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.Generators/CompilationExtensions.cs -------------------------------------------------------------------------------- /src/Venflow.Generators/GeneratorExecutionContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.Generators/GeneratorExecutionContextExtensions.cs -------------------------------------------------------------------------------- /src/Venflow.Generators/KeyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.Generators/KeyGenerator.cs -------------------------------------------------------------------------------- /src/Venflow.Generators/Properties/GeneratedKeyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.Generators/Properties/GeneratedKeyAttribute.cs -------------------------------------------------------------------------------- /src/Venflow.Generators/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.Generators/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Venflow.Generators/Venflow.Generators.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.Generators/Venflow.Generators.csproj -------------------------------------------------------------------------------- /src/Venflow.Generators/Venflow.Generators.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.Generators/Venflow.Generators.xml -------------------------------------------------------------------------------- /src/Venflow.Keys/JsonKeyConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.Keys/JsonKeyConverter.cs -------------------------------------------------------------------------------- /src/Venflow.Keys/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.Keys/Key.cs -------------------------------------------------------------------------------- /src/Venflow.Keys/KeyConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.Keys/KeyConverter.cs -------------------------------------------------------------------------------- /src/Venflow.Keys/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | #if NET5_0_OR_GREATER 4 | [module: SkipLocalsInit] 5 | #endif 6 | -------------------------------------------------------------------------------- /src/Venflow.Keys/Properties/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | global using System; 2 | -------------------------------------------------------------------------------- /src/Venflow.Keys/Venflow.Keys.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.Keys/Venflow.Keys.csproj -------------------------------------------------------------------------------- /src/Venflow.Keys/Venflow.Keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.Keys/Venflow.Keys.xml -------------------------------------------------------------------------------- /src/Venflow.NewtonsoftJson/NewtonsoftJsonKeyConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.NewtonsoftJson/NewtonsoftJsonKeyConverter.cs -------------------------------------------------------------------------------- /src/Venflow.NewtonsoftJson/Venflow.NewtonsoftJson.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.NewtonsoftJson/Venflow.NewtonsoftJson.csproj -------------------------------------------------------------------------------- /src/Venflow.NewtonsoftJson/Venflow.NewtonsoftJson.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow.NewtonsoftJson/Venflow.NewtonsoftJson.xml -------------------------------------------------------------------------------- /src/Venflow/CastTypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/CastTypeHandler.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/IBaseInsertRelationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/IBaseInsertRelationBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/IBaseQueryRelationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/IBaseQueryRelationBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/IDeleteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/IDeleteCommand.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/IDeleteCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/IDeleteCommandBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/IInsertCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/IInsertCommand.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/IInsertCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/IInsertCommandBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/IInsertRelationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/IInsertRelationBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/IPreCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/IPreCommandBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/IQueryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/IQueryCommand.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/IQueryCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/IQueryCommandBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/IQueryRelationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/IQueryRelationBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/ISpecficVenflowCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/ISpecficVenflowCommandBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/IUpdateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/IUpdateCommand.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/IUpdateCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/IUpdateCommandBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/IVenflowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/IVenflowCommand.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/IVenflowCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/IVenflowCommandBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/InsertCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/InsertCacheKey.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/InsertCacheKeyComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/InsertCacheKeyComparer.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/InsertRelationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/InsertRelationBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/InterpolatedSqlExpressionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/InterpolatedSqlExpressionConverter.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/QueryCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/QueryCacheKey.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/QueryCacheKeyComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/QueryCacheKeyComparer.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/QueryRelationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/QueryRelationBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/RelationBuilderValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/RelationBuilderValues.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/RelationPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/RelationPath.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/SqlQueryCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/SqlQueryCacheKey.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/SqlQueryCacheKeyComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/SqlQueryCacheKeyComparer.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/VenflowBaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/VenflowBaseCommand.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/VenflowCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/VenflowCommandBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/VenflowDeleteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/VenflowDeleteCommand.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/VenflowDeleteCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/VenflowDeleteCommandBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/VenflowInsertCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/VenflowInsertCommand.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/VenflowInsertCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/VenflowInsertCommandBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/VenflowQueryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/VenflowQueryCommand.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/VenflowQueryCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/VenflowQueryCommandBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/VenflowUpdateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/VenflowUpdateCommand.cs -------------------------------------------------------------------------------- /src/Venflow/Commands/VenflowUpdateCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Commands/VenflowUpdateCommandBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Database.cs -------------------------------------------------------------------------------- /src/Venflow/DatabaseConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/DatabaseConfiguration.cs -------------------------------------------------------------------------------- /src/Venflow/DatabaseConfigurationOptionsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/DatabaseConfigurationOptionsBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/DatabaseOptionsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/DatabaseOptionsBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/DatabaseTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/DatabaseTransaction.cs -------------------------------------------------------------------------------- /src/Venflow/DualKeyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/DualKeyCollection.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/IL/IILBaseInst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/IL/IILBaseInst.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/IL/ILAsyncGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/IL/ILAsyncGenerator.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/IL/ILFieldInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/IL/ILFieldInfo.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/IL/ILGeneratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/IL/ILGeneratorExtensions.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/IL/ILGhostGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/IL/ILGhostGenerator.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/IL/ILInst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/IL/ILInst.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/IL/ILSwitchBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/IL/ILSwitchBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/IgnoresAccessChecksToAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/IgnoresAccessChecksToAttribute.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/Inserter/EntityRelationHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/Inserter/EntityRelationHolder.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/Inserter/InsertionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/Inserter/InsertionFactory.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/Inserter/InsertionFactoryCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/Inserter/InsertionFactoryCompiler.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/Inserter/InsertionSourceCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/Inserter/InsertionSourceCompiler.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/Instantiater/DatabaseTableFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/Instantiater/DatabaseTableFactory.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/Materializer/MaterializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/Materializer/MaterializerFactory.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/Materializer/MaterializerFactoryCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/Materializer/MaterializerFactoryCompiler.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/Materializer/MaterializerSourceCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/Materializer/MaterializerSourceCompiler.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/Materializer/QueryEntityHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/Materializer/QueryEntityHolder.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/Materializer/SqlExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/Materializer/SqlExpression.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/NullableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/NullableAttribute.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/NullableContextAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/NullableContextAttribute.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/Proxies/ChangeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/Proxies/ChangeTracker.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/Proxies/ChangeTrackerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/Proxies/ChangeTrackerFactory.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/Proxies/IEntityProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/Proxies/IEntityProxy.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/Retriever/ValueRetrieverFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/Retriever/ValueRetrieverFactory.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/SpanExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/SpanExtensions.cs -------------------------------------------------------------------------------- /src/Venflow/Dynamic/TypeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Dynamic/TypeFactory.cs -------------------------------------------------------------------------------- /src/Venflow/Enums/ColumnListStringOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Enums/ColumnListStringOptions.cs -------------------------------------------------------------------------------- /src/Venflow/Enums/ColumnOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Enums/ColumnOptions.cs -------------------------------------------------------------------------------- /src/Venflow/Enums/CommandType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Enums/CommandType.cs -------------------------------------------------------------------------------- /src/Venflow/Enums/ForeignKeyLoaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Enums/ForeignKeyLoaction.cs -------------------------------------------------------------------------------- /src/Venflow/Enums/ForeignTruncateOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Enums/ForeignTruncateOptions.cs -------------------------------------------------------------------------------- /src/Venflow/Enums/IdentityTruncateOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Enums/IdentityTruncateOptions.cs -------------------------------------------------------------------------------- /src/Venflow/Enums/InsertCacheKeyOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Enums/InsertCacheKeyOptions.cs -------------------------------------------------------------------------------- /src/Venflow/Enums/JoinBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Enums/JoinBehaviour.cs -------------------------------------------------------------------------------- /src/Venflow/Enums/LoggingBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Enums/LoggingBehaviour.cs -------------------------------------------------------------------------------- /src/Venflow/Enums/QueryGenerationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Enums/QueryGenerationOptions.cs -------------------------------------------------------------------------------- /src/Venflow/Enums/RelationPartType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Enums/RelationPartType.cs -------------------------------------------------------------------------------- /src/Venflow/Enums/RelationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Enums/RelationType.cs -------------------------------------------------------------------------------- /src/Venflow/Enums/SqlExpressionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Enums/SqlExpressionOptions.cs -------------------------------------------------------------------------------- /src/Venflow/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Venflow/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/FodyWeavers.xsd -------------------------------------------------------------------------------- /src/Venflow/FormattableSqlStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/FormattableSqlStringBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/IParameterTypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/IParameterTypeHandler.cs -------------------------------------------------------------------------------- /src/Venflow/InvalidEntityRelationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/InvalidEntityRelationException.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/DatabaseConfigurationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/DatabaseConfigurationFactory.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/Definitions/Builder/EntityBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/Definitions/Builder/EntityBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/Definitions/Builder/IForeignKeyRelationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/Definitions/Builder/IForeignKeyRelationBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/Definitions/Builder/ILeftRelationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/Definitions/Builder/ILeftRelationBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/Definitions/Builder/IMultiRightRelationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/Definitions/Builder/IMultiRightRelationBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/Definitions/Builder/INotRequiredMultiRightRelationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/Definitions/Builder/INotRequiredMultiRightRelationBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/Definitions/Builder/INotRequiredSingleRightRelationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/Definitions/Builder/INotRequiredSingleRightRelationBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/Definitions/Builder/IRequiredMultiRightRelationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/Definitions/Builder/IRequiredMultiRightRelationBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/Definitions/Builder/IRequiredSingleRightRelationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/Definitions/Builder/IRequiredSingleRightRelationBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/Definitions/Builder/PropertyBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/Definitions/Builder/PropertyBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/Definitions/Builder/RightRelationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/Definitions/Builder/RightRelationBuilder.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/Definitions/ColumnDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/Definitions/ColumnDefinition.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/Definitions/EntityConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/Definitions/EntityConfiguration.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/Definitions/EntityFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/Definitions/EntityFactory.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/Definitions/EntityRelationDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/Definitions/EntityRelationDefinition.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/Definitions/ExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/Definitions/ExpressionExtensions.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/Entity.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/EntityColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/EntityColumn.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/EntityColumnCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/EntityColumnCollection.cs -------------------------------------------------------------------------------- /src/Venflow/Modeling/EntityRelation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Modeling/EntityRelation.cs -------------------------------------------------------------------------------- /src/Venflow/NpgsqlCommandExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/NpgsqlCommandExtensions.cs -------------------------------------------------------------------------------- /src/Venflow/NpgsqlDataReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/NpgsqlDataReaderExtensions.cs -------------------------------------------------------------------------------- /src/Venflow/NpgsqlParameterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/NpgsqlParameterExtensions.cs -------------------------------------------------------------------------------- /src/Venflow/NpgsqlQuotedNameTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/NpgsqlQuotedNameTranslator.cs -------------------------------------------------------------------------------- /src/Venflow/ParameterTypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/ParameterTypeHandler.cs -------------------------------------------------------------------------------- /src/Venflow/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Venflow/Properties/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Properties/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Venflow/PropertyInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/PropertyInfoExtensions.cs -------------------------------------------------------------------------------- /src/Venflow/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Table.cs -------------------------------------------------------------------------------- /src/Venflow/TableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/TableBase.cs -------------------------------------------------------------------------------- /src/Venflow/TrioKeyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/TrioKeyCollection.cs -------------------------------------------------------------------------------- /src/Venflow/TypeArgumentException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/TypeArgumentException.cs -------------------------------------------------------------------------------- /src/Venflow/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/TypeExtensions.cs -------------------------------------------------------------------------------- /src/Venflow/UInt64Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/UInt64Handler.cs -------------------------------------------------------------------------------- /src/Venflow/Venflow.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Venflow.csproj -------------------------------------------------------------------------------- /src/Venflow/Venflow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/Venflow.xml -------------------------------------------------------------------------------- /src/Venflow/VenflowConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/VenflowConfiguration.cs -------------------------------------------------------------------------------- /src/Venflow/VenflowDbType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/src/Venflow/VenflowDbType.cs -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/BenchmarkHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/BenchmarkHandler.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Benchmarks/BenchmarkBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Benchmarks/BenchmarkBase.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Benchmarks/DeleteBenchmarks/DeleteBatchAsyncBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Benchmarks/DeleteBenchmarks/DeleteBatchAsyncBenchmark.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Benchmarks/DeleteBenchmarks/DeleteSingleAsyncBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Benchmarks/DeleteBenchmarks/DeleteSingleAsyncBenchmark.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Benchmarks/InsertBenchmarks/InsertBatchAsyncBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Benchmarks/InsertBenchmarks/InsertBatchAsyncBenchmark.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Benchmarks/InsertBenchmarks/InsertBatchWithRelationsAsyncBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Benchmarks/InsertBenchmarks/InsertBatchWithRelationsAsyncBenchmark.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Benchmarks/InsertBenchmarks/InsertSingleAsyncBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Benchmarks/InsertBenchmarks/InsertSingleAsyncBenchmark.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Benchmarks/InsertBenchmarks/InsertSingleWithRelationsAsyncBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Benchmarks/InsertBenchmarks/InsertSingleWithRelationsAsyncBenchmark.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Benchmarks/InstantiationBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Benchmarks/InstantiationBenchmark.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Benchmarks/MiscBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Benchmarks/MiscBenchmarks.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Benchmarks/QueryBenchmarks/QueryBatchAsyncBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Benchmarks/QueryBenchmarks/QueryBatchAsyncBenchmark.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Benchmarks/QueryBenchmarks/QueryBatchWithRelationsAsyncBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Benchmarks/QueryBenchmarks/QueryBatchWithRelationsAsyncBenchmark.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Benchmarks/QueryBenchmarks/QuerySingleAsyncBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Benchmarks/QueryBenchmarks/QuerySingleAsyncBenchmark.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Benchmarks/QueryBenchmarks/QuerySingleWithParameterAsyncBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Benchmarks/QueryBenchmarks/QuerySingleWithParameterAsyncBenchmark.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Benchmarks/QueryBenchmarks/QuerySingleWithRelationsAsyncBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Benchmarks/QueryBenchmarks/QuerySingleWithRelationsAsyncBenchmark.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Benchmarks/UpdateBenchmarks/UpdateBatchAsyncBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Benchmarks/UpdateBenchmarks/UpdateBatchAsyncBenchmark.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Benchmarks/UpdateBenchmarks/UpdateSingleAsyncBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Benchmarks/UpdateBenchmarks/UpdateSingleAsyncBenchmark.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Models/Configurations/BenchmarkDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Models/Configurations/BenchmarkDb.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Models/Configurations/BenchmarkDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Models/Configurations/BenchmarkDbContext.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Models/Email.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Models/Email.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Models/EmailContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Models/EmailContent.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Models/Person.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Startup.cs -------------------------------------------------------------------------------- /test/Venflow.Benchmarks/Venflow.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Benchmarks/Venflow.Benchmarks.csproj -------------------------------------------------------------------------------- /test/Venflow.Score/BenchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Score/BenchResult.cs -------------------------------------------------------------------------------- /test/Venflow.Score/Orm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Score/Orm.cs -------------------------------------------------------------------------------- /test/Venflow.Score/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Score/Startup.cs -------------------------------------------------------------------------------- /test/Venflow.Score/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Score/StringExtensions.cs -------------------------------------------------------------------------------- /test/Venflow.Score/Venflow.Score.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Score/Venflow.Score.csproj -------------------------------------------------------------------------------- /test/Venflow.Shared/SecretsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Shared/SecretsHandler.cs -------------------------------------------------------------------------------- /test/Venflow.Shared/Venflow.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Shared/Venflow.Shared.csproj -------------------------------------------------------------------------------- /test/Venflow.Tests.Keys/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests.Keys/Directory.Build.props -------------------------------------------------------------------------------- /test/Venflow.Tests.Keys/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests.Keys/Key.cs -------------------------------------------------------------------------------- /test/Venflow.Tests.Keys/Venflow.Tests.Keys.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests.Keys/Venflow.Tests.Keys.csproj -------------------------------------------------------------------------------- /test/Venflow.Tests.Keys/Venflow.Tests.Keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests.Keys/Venflow.Tests.Keys.xml -------------------------------------------------------------------------------- /test/Venflow.Tests/DatabaseTests/RelationMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/DatabaseTests/RelationMapping.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/DeleteTests/BatchDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/DeleteTests/BatchDelete.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/DeleteTests/SingleDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/DeleteTests/SingleDelete.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/GeneratorTests/KeyGenerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/GeneratorTests/KeyGenerationTests.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/InsertTests/BatchInsert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/InsertTests/BatchInsert.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/InsertTests/SingleInsert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/InsertTests/SingleInsert.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/JsonTests/KeyConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/JsonTests/KeyConverter.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/JsonTests/NewtonsoftJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/JsonTests/NewtonsoftJson.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/JsonTests/SystemJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/JsonTests/SystemJson.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/LogTests/LogTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/LogTests/LogTests.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/MiscTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/MiscTests.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/Blog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/Blog.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/BlogConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/BlogConfiguration.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/Dummy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/Dummy.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/DummyEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/DummyEnum.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/Email.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/Email.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/EmailConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/EmailConfiguration.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/EmailContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/EmailContent.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/Person.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/PersonConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/PersonConfiguration.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/PostgreEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/PostgreEnum.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/RelationDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/RelationDatabase.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/ReverseEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/ReverseEmail.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/ReverseEmailConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/ReverseEmailConfiguration.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/ReverseEmailContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/ReverseEmailContent.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/ReverseEmailContentConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/ReverseEmailContentConfiguration.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/ReversePerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/ReversePerson.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/ReverseRelationDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/ReverseRelationDatabase.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/UncommonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/UncommonType.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/User.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Models/UserConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Models/UserConfiguration.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/QueryTests/BatchQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/QueryTests/BatchQuery.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/QueryTests/CustomQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/QueryTests/CustomQuery.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/QueryTests/ExpressionQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/QueryTests/ExpressionQuery.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/QueryTests/SingleQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/QueryTests/SingleQuery.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/SpecificTypes/CLREnumTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/SpecificTypes/CLREnumTests.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/SpecificTypes/CLRUIntKeyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/SpecificTypes/CLRUIntKeyTests.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/SpecificTypes/CLRUIntTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/SpecificTypes/CLRUIntTests.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/SpecificTypes/GuidTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/SpecificTypes/GuidTests.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/SpecificTypes/KeyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/SpecificTypes/KeyTests.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/SpecificTypes/PostgresEnumTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/SpecificTypes/PostgresEnumTests.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/TableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/TableExtensions.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/TableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/TableTests.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/TestBase.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/TransactionTests/TransactionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/TransactionTests/TransactionTests.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/UnitTestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/UnitTestHandler.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/UpdateTests/BatchUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/UpdateTests/BatchUpdate.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/UpdateTests/CustomUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/UpdateTests/CustomUpdate.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/UpdateTests/SingleUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/UpdateTests/SingleUpdate.cs -------------------------------------------------------------------------------- /test/Venflow.Tests/Venflow.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/Venflow.Tests.csproj -------------------------------------------------------------------------------- /test/Venflow.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwentyFourMinutes/Venflow/HEAD/test/Venflow.Tests/xunit.runner.json --------------------------------------------------------------------------------