├── .config └── dotnet-tools.json ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── docs-prs.yml │ ├── docs.yml │ ├── on-manual-do-nuget-publish.yml │ ├── on-push-do-ci-build-pg15-jsonnet.yml │ └── on-push-do-ci-build-pgLatest-systemtextjson.yml ├── .gitignore ├── .markdownlint.json ├── .markdownlintrc ├── .nuke ├── build.schema.json └── parameters.json ├── Analysis.Build.props ├── CONTRIBUTING.md ├── Directory.Build.props ├── LICENSE ├── README.md ├── assets └── mdsnippet-sample.png ├── benchmarks ├── 1.2.5 │ ├── BulkLoading-report.html │ ├── DocumentActions-report.html │ ├── EventActions-report.html │ └── LinqActions-report.html ├── 1.3 │ ├── BulkLoading-report-default.md │ ├── BulkLoading-report-github.md │ ├── BulkLoading-report.csv │ ├── BulkLoading-report.html │ ├── DocumentActions-report-default.md │ ├── DocumentActions-report-github.md │ ├── DocumentActions-report.csv │ ├── DocumentActions-report.html │ ├── EventActions-report-default.md │ ├── EventActions-report-github.md │ ├── EventActions-report.csv │ ├── EventActions-report.html │ ├── LinqActions-report-default.md │ ├── LinqActions-report-github.md │ ├── LinqActions-report.csv │ └── LinqActions-report.html ├── 2.0.baseline │ └── results │ │ ├── BulkLoading-report-github.md │ │ ├── BulkLoading-report.csv │ │ ├── BulkLoading-report.html │ │ ├── DocumentActions-report-default.md │ │ ├── DocumentActions-report-github.md │ │ ├── DocumentActions-report.csv │ │ ├── DocumentActions-report.html │ │ ├── EventActions-report-default.md │ │ ├── EventActions-report-github.md │ │ ├── EventActions-report.csv │ │ ├── EventActions-report.html │ │ ├── LinqActions-report-default.md │ │ ├── LinqActions-report-github.md │ │ ├── LinqActions-report.csv │ │ └── LinqActions-report.html ├── 2.0.fastexpressioncompiler │ └── results │ │ ├── BulkLoading-report-default.md │ │ ├── BulkLoading-report-github.md │ │ ├── BulkLoading-report.csv │ │ ├── BulkLoading-report.html │ │ ├── DocumentActions-report-default.md │ │ ├── DocumentActions-report-github.md │ │ ├── DocumentActions-report.csv │ │ ├── DocumentActions-report.html │ │ ├── EventActions-report-default.md │ │ ├── EventActions-report.csv │ │ ├── EventActions-report.html │ │ ├── LinqActions-report-default.md │ │ ├── LinqActions-report.csv │ │ └── LinqActions-report.html └── 2.0.newtonsoft.upgrade │ └── results │ ├── BulkLoading-report-default.md │ ├── BulkLoading-report.csv │ ├── BulkLoading-report.html │ ├── DocumentActions-report-default.md │ ├── DocumentActions-report-github.md │ ├── DocumentActions-report.csv │ ├── DocumentActions-report.html │ ├── EventActions-report-default.md │ ├── EventActions-report-github.md │ ├── EventActions-report.csv │ ├── EventActions-report.html │ ├── LinqActions-report-default.md │ ├── LinqActions-report-github.md │ ├── LinqActions-report.csv │ └── LinqActions-report.html ├── docker-compose.yml ├── docs ├── .editorconfig ├── .vitepress │ ├── algolia-config.json │ ├── config.mts │ └── theme │ │ ├── CustomLayout.vue │ │ ├── custom.css │ │ └── index.js ├── .vscode │ └── settings.json ├── cSpell.json ├── community │ └── tools-and-libraries.md ├── configuration │ ├── cli.md │ ├── environment-checks.md │ ├── hostbuilder.md │ ├── ioc.md │ ├── json.md │ ├── multitenancy.md │ ├── optimized_artifact_workflow.md │ ├── prebuilding.md │ ├── retries.md │ └── storeoptions.md ├── devops │ └── devops.md ├── diagnostics.md ├── documents │ ├── aspnetcore.md │ ├── concurrency.md │ ├── deletes.md │ ├── execute-custom-sql.md │ ├── full-text.md │ ├── hierarchies.md │ ├── identity.md │ ├── index.md │ ├── indexing │ │ ├── computed-indexes.md │ │ ├── duplicated-fields.md │ │ ├── foreign-keys.md │ │ ├── gin-gist-indexes.md │ │ ├── ignore-indexes.md │ │ ├── index.md │ │ ├── metadata-indexes.md │ │ └── unique.md │ ├── initial-data.md │ ├── metadata.md │ ├── multi-tenancy.md │ ├── noda-time.md │ ├── partial-updates-patching.md │ ├── querying │ │ ├── advanced-sql.md │ │ ├── batched-queries.md │ │ ├── byid.md │ │ ├── compiled-queries.md │ │ ├── index.md │ │ ├── linq │ │ │ ├── async-enumerable.md │ │ │ ├── booleans.md │ │ │ ├── child-collections.md │ │ │ ├── extending.md │ │ │ ├── include.md │ │ │ ├── index.md │ │ │ ├── nulls.md │ │ │ ├── operators.md │ │ │ ├── paging.md │ │ │ ├── projections.md │ │ │ ├── sql.md │ │ │ └── strings.md │ │ ├── query-json.md │ │ └── sql.md │ ├── sessions.md │ ├── storage.md │ └── storing.md ├── events │ ├── appending.md │ ├── archiving.md │ ├── compacting.md │ ├── configuration.md │ ├── index.md │ ├── learning.md │ ├── metadata.md │ ├── multitenancy.md │ ├── optimizing.md │ ├── projections │ │ ├── aggregate-projections.md │ │ ├── async-daemon.md │ │ ├── custom-aggregates.md │ │ ├── custom.md │ │ ├── event-projections.md │ │ ├── flat.md │ │ ├── healthchecks.md │ │ ├── index.md │ │ ├── inline.md │ │ ├── ioc.md │ │ ├── live-aggregates.md │ │ ├── multi-stream-projections.md │ │ ├── projection-by-event-type.md │ │ ├── read-aggregates.md │ │ ├── rebuilding.md │ │ └── testing.md │ ├── protection.md │ ├── querying.md │ ├── quickstart.md │ ├── skipping.md │ ├── storage.md │ ├── subscriptions.md │ └── versioning.md ├── getting-started.md ├── images │ ├── StoreOptions.png │ ├── a_pine_marten_walking_across_a_tree_branch.png │ ├── japanese_marten.png │ ├── japanese_marten2.png │ ├── marten.jpeg │ ├── martens-in-conference-room.png │ ├── ping_marten_jumping_off_branch.png │ ├── postgres-sequence.png │ ├── postgres-table-definition.png │ └── subscriptions.png ├── index.md ├── introduction.md ├── migration-guide.md ├── otel.md ├── postgres │ ├── casing │ │ ├── case-insensitive-data.md │ │ ├── index.md │ │ ├── queries.md │ │ ├── unique-values.md │ │ └── using-duplicate-fields.md │ ├── casting.md │ ├── dates.md │ ├── escaping.md │ ├── if-statements.md │ ├── index.md │ ├── indexing-jsonb.md │ ├── indexing.md │ ├── naming.md │ ├── slow-queries.md │ └── types.md ├── public │ ├── _redirects │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── dotnet-aws.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── logo.png │ ├── manifest.json │ └── social.png ├── scenarios │ ├── aggregates-events-repositories.md │ ├── command_handler_workflow.md │ ├── copy-and-transform-stream.md │ ├── dynamic-data.md │ ├── index.md │ └── using-sequence-for-unique-id.md ├── schema │ ├── authorization.md │ ├── cleaning.md │ ├── exporting.md │ ├── extensions.md │ ├── index.md │ ├── migrations.md │ └── storage.md ├── src │ └── samples │ │ └── FreightShipping │ │ ├── CrossAggregateViews.cs │ │ ├── EventSourcedAggregate.cs │ │ ├── EvolveToEventSourcing.cs │ │ ├── FreightShipping.csproj │ │ ├── FreightShipping.sln │ │ ├── GettingStarted.cs │ │ ├── ModelingDocuments.cs │ │ ├── Program.cs │ │ ├── Utils.cs │ │ ├── WolverineIntegration.cs │ │ ├── appsettings.json │ │ └── docker-compose.yml ├── support-policy.md ├── testing │ └── integration.md ├── troubleshoot.md ├── tutorials │ ├── advanced-considerations.md │ ├── conclusion.md │ ├── cross-aggregate-views.md │ ├── event-sourced-aggregate.md │ ├── evolve-to-event-sourcing.md │ ├── freight-shipping-tutorial-info.md-snippet │ ├── getting-started.md │ ├── index.md │ ├── modeling-documents.md │ ├── read-model-projections.md │ └── wolverine-integration.md └── vite.config.js ├── documentation ├── content │ ├── affix.css │ ├── affix.js │ ├── bootstrap.min.css │ ├── fubudocs.theme.css │ ├── images │ │ ├── banner.png │ │ ├── emblem.png │ │ ├── marten.jpeg │ │ ├── postgres-sequence.png │ │ └── postgres-table-definition.png │ ├── prism.css │ ├── prism.js │ ├── ribbons.css │ ├── sidebar.js │ ├── stylish-portfolio.css │ └── theme.css ├── diagrams │ ├── index.md │ ├── querying.md │ ├── storage.md │ └── v4eventstore.md ├── documentation │ ├── admin │ │ ├── index.md │ │ └── installing-plv8-windows.md │ ├── cli.md │ ├── documents │ │ ├── advanced │ │ │ ├── cleaning.md │ │ │ ├── customizing_linq.md │ │ │ ├── eject.md │ │ │ ├── existing_transactions.md │ │ │ ├── extensions.md │ │ │ ├── hierarchies.md │ │ │ ├── identitymap.md │ │ │ ├── index.md │ │ │ ├── javascript_transformations.md │ │ │ ├── optimistic_concurrency.md │ │ │ ├── patch_api.md │ │ │ ├── retrypolicy.md │ │ │ ├── soft_deletes.md │ │ │ └── structural_typing.md │ │ ├── basics │ │ │ ├── bulk_insert.md │ │ │ ├── deleting.md │ │ │ ├── index.md │ │ │ ├── initial_data.md │ │ │ ├── loading.md │ │ │ ├── order.txt │ │ │ └── persisting.md │ │ ├── command-timeouts.md │ │ ├── configuration │ │ │ ├── computed_index.md │ │ │ ├── document_policies.md │ │ │ ├── duplicated_fields.md │ │ │ ├── foreign_keys.md │ │ │ ├── full_text.md │ │ │ ├── gin_or_gist_index.md │ │ │ ├── index.md │ │ │ ├── metadata_index.md │ │ │ ├── noda_time.md │ │ │ └── unique.md │ │ ├── connections.md │ │ ├── diagnostics.md │ │ ├── identity │ │ │ ├── custom.md │ │ │ ├── guid.md │ │ │ ├── index.md │ │ │ └── sequential.md │ │ ├── index.md │ │ ├── json │ │ │ ├── index.md │ │ │ ├── jil.md │ │ │ └── newtonsoft.md │ │ ├── order.txt │ │ ├── querying │ │ │ ├── async.md │ │ │ ├── batched_queries.md │ │ │ ├── compiled_queries.md │ │ │ ├── include.md │ │ │ ├── index.md │ │ │ ├── linq.md │ │ │ ├── metadata_queries.md │ │ │ ├── order.txt │ │ │ ├── paging.md │ │ │ ├── projections.md │ │ │ ├── query_json.md │ │ │ └── sql.md │ │ └── tenancy │ │ │ ├── basicoperations.md │ │ │ ├── configuring.md │ │ │ ├── implementationdetails.md │ │ │ ├── index.md │ │ │ └── order.txt │ ├── events │ │ ├── appending.md │ │ ├── identity.md │ │ ├── index.md │ │ ├── order.txt │ │ ├── projections │ │ │ ├── async_daemon.md │ │ │ ├── custom.md │ │ │ ├── index.md │ │ │ └── projectionbyeventtype.md │ │ ├── schema.md │ │ ├── streams.md │ │ └── versioning │ │ │ └── index.md │ ├── index.md │ ├── integration.md │ ├── order.txt │ ├── postgres │ │ ├── backup-restore │ │ │ ├── index.md │ │ │ ├── local.md │ │ │ └── remote.md │ │ ├── casing │ │ │ ├── case-insensitive-data.md │ │ │ ├── index.md │ │ │ ├── order.txt │ │ │ ├── queries.md │ │ │ ├── unique-values.md │ │ │ └── using-duplicate-fields.md │ │ ├── casting.md │ │ ├── dates.md │ │ ├── escaping.md │ │ ├── if_statements.md │ │ ├── index.md │ │ ├── indexing.md │ │ ├── indexing_jsonb.md │ │ ├── naming.md │ │ ├── order.txt │ │ ├── slow_queries.md │ │ └── types.md │ ├── scenarios │ │ ├── aggregates_events_repositories.md │ │ ├── copyandtransformstream.md │ │ ├── dynamicdata.md │ │ ├── immutable_projections_readmodel.md │ │ ├── index.md │ │ └── usingsequenceforuniqueid.md │ ├── schema │ │ ├── authorization.md │ │ ├── exporting.md │ │ ├── index.md │ │ ├── metadata.md │ │ ├── migrations.md │ │ ├── order.txt │ │ ├── schema.md │ │ └── storage.md │ └── troubleshoot │ │ └── index.md ├── getting_started.md ├── layout.htm ├── migration_guide.md ├── order.txt ├── outline.txt └── splash.htm ├── mdsnippets.json ├── netlify.toml ├── package.json ├── planning ├── MartenV4-WastazComments.md └── MartenV4.md ├── postgresql.license ├── src ├── .editorconfig ├── AspNetCoreWithMarten │ ├── AspNetCoreWithMarten.csproj │ ├── EventTypes.cs │ ├── IssueController.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Samples │ │ ├── ByConnectionString │ │ │ └── Startup.cs │ │ ├── ByNestedClosure │ │ │ └── Startup.cs │ │ ├── ByStoreOptions │ │ │ └── Startup.cs │ │ ├── ConfiguringSessionCreation │ │ │ └── Startup.cs │ │ ├── EagerInitialization │ │ │ └── Startup.cs │ │ ├── LightweightSessions │ │ │ └── Startup.cs │ │ └── PerScopeSessionCreation │ │ │ └── Startup.cs │ ├── User.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── AspNetODataWithMarten │ ├── AspNetODataWithMarten.csproj │ ├── Controllers │ │ └── WeatherForecastController.cs │ ├── Program.cs │ └── Properties │ │ └── launchSettings.json ├── CommandLineRunner │ ├── AsyncDaemonBootstrappingSamples.cs │ ├── CommandLineRunner.csproj │ ├── ExtraStores.cs │ ├── FindUserByAllTheThings.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── TestCommand.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── ContainerScopedProjectionTests │ ├── ContainerScopedProjectionTests.csproj │ ├── LetterCounts.cs │ ├── LetterProjection.cs │ ├── LetterProjection2.cs │ ├── configuration_specs.cs │ ├── projections_with_IoC_services.cs │ ├── when_registering_an_eventprojection_through_ioc_as_scoped.cs │ ├── when_registering_an_eventprojection_through_ioc_as_singleton.cs │ ├── when_registering_an_iprojection_through_ioc_as_scoped.cs │ └── when_registering_an_iprojection_through_ioc_as_singleton.cs ├── CoreTests │ ├── AssemblyInfo.cs │ ├── BootstrappingExamples.cs │ ├── Bugs │ │ ├── Bug_1151_assert_database_matches_configuration_exception.cs │ │ ├── Bug_1258_cannot_derive_updates_for_objects.cs │ │ ├── Bug_2099_json_serializer_should_handle_nulls.cs │ │ ├── Bug_2103_able_to_add_metadata_tables_in_migrations_to_events_table.cs │ │ ├── Bug_2135_open_session_should_use_provided_connection_string.cs │ │ ├── Bug_2210_ambient_transactions_plus_passing_in_a_connection.cs │ │ ├── Bug_2274_not_equals_canonicalization.cs │ │ ├── Bug_2564_database_creation.cs │ │ ├── Bug_2601_json_properties_without_names.cs │ │ ├── Bug_2602_include_with_conjoined_tenancy.cs │ │ ├── Bug_2603_similar_named_props.cs │ │ ├── Bug_2893_fulltext_index_creation.cs │ │ ├── Bug_2914_NGram_index_being_changed_incorrectly.cs │ │ ├── Bug_2916_ngram_index_when_multi_tenanted.cs │ │ ├── Bug_2917_index_on_DateOnly.cs │ │ ├── Bug_3019_gist_gin_index_on_arrays.cs │ │ ├── Bug_3083_concurrent_type_generation.cs │ │ ├── Bug_3145_migration_to_tenanted.cs │ │ ├── Bug_3266_allow_for_decimal_indexes.cs │ │ ├── Bug_3430_warn_when_indexes_are_too_big.cs │ │ ├── Bug_3499_duplicate_indexes_recreated_on_startup.cs │ │ ├── Bug_3603_migration_of_soft_deleted_partitions.cs │ │ ├── Bug_3911_use_sticky_connections_when_otel_connection_tracking_is_on.cs │ │ ├── Bug_962_initial_data_populate_causing_null_ref_ex.cs │ │ └── Bug_983_autocreate_none_is_disabling_schema_validation.cs │ ├── CoreTests.csproj │ ├── Diagnostics │ │ ├── ability_to_fetch_postgres_server_version.cs │ │ └── read_only_view_of_store_options_on_document_store.cs │ ├── DocumentCleanerTests.cs │ ├── DocumentSchemaResolverTests.cs │ ├── Examples │ │ ├── CodeGenerationOptions.cs │ │ ├── EnvironmentChecks.cs │ │ ├── InitialDataSamples.cs │ │ └── MultipleDocumentStores.cs │ ├── Exceptions │ │ ├── ApplyEventExceptionTests.cs │ │ ├── MartenCommandExceptionTests.cs │ │ ├── known_exception_causes_dueto_pg10.cs │ │ └── known_exception_causes_dueto_pg9.cs │ ├── Internal │ │ └── Sessions │ │ │ └── EventTracingConnectionLifetimeTests.cs │ ├── Internals │ │ ├── PersistenceGraphTests.cs │ │ └── VersionTrackerTests.cs │ ├── Logging │ │ └── DefaultMartenLoggerTests.cs │ ├── Partitioning │ │ ├── partitioning_and_foreign_keys.cs │ │ ├── partitioning_by_hash_on_id.cs │ │ ├── partitioning_configuration.cs │ │ ├── partitioning_documents_on_duplicate_fields.cs │ │ ├── partitioning_migrations.cs │ │ └── querying_against_conjoined_partitioning_with_tenant_id_and_subquery.cs │ ├── QuestTypes.cs │ ├── SessionOptionsTests.cs │ ├── Sessions │ │ ├── SessionSetupTests.cs │ │ └── TenantedSessionFactoryTests.cs │ ├── StoreOptionsTests.cs │ ├── Util │ │ └── ReflectionExtensionsTests.cs │ ├── VersionTrackerTests.cs │ ├── adding_custom_schema_objects.cs │ ├── all_exceptions_should_derive_from_MartenException.cs │ ├── applying_metrics.cs │ ├── auto_register_specs.cs │ ├── bootstrapping_with_service_collection_extensions.cs │ ├── configuring_marten_with_async_extensions.cs │ ├── describing_database_usage_from_DefaultTenancy.cs │ ├── enhance_polly_smoke_test.cs │ ├── executing_arbitrary_sql_as_part_of_transaction.cs │ ├── jasper_fx_mechanics.cs │ ├── migrate_from_guid_to_int_based_revisions.cs │ ├── npgsql_multiplexing.cs │ ├── reading_configuration_from_jasperfxoptions.cs │ ├── request_count_tracking.cs │ ├── retry_mechanism.cs │ ├── setting_solo_mode_in_test_support.cs │ ├── sticky_connection_mode.cs │ └── working_with_initial_data.cs ├── DaemonTests │ ├── AggregationExamples.cs │ ├── Aggregations │ │ ├── build_aggregate_multiple_projections.cs │ │ ├── build_aggregate_projection.cs │ │ ├── converting_projection_from_inline_to_async.cs │ │ ├── custom_aggregation_in_async_daemon.cs │ │ ├── multi_stream_projections.cs │ │ ├── multistream_data_teardown_on_rebuild.cs │ │ └── side_effects_in_aggregations.cs │ ├── AssemblyInfo.cs │ ├── Bug_catching_up_should_catch_marten_command_exceptions.cs │ ├── Bugs │ │ ├── Bug_1995_empty_batch_update_failure.cs │ │ ├── Bug_2073_tenancy_problems.cs │ │ ├── Bug_2074_recovering_from_errors.cs │ │ ├── Bug_2159_using_QuerySession_within_async_aggregation.cs │ │ ├── Bug_2177_query_session_tenancy_in_daemon.cs │ │ ├── Bug_2201_out_of_order_exception_with_hard_deletes.cs │ │ ├── Bug_2245_async_daemon_getting_stuck.cs │ │ ├── Bug_2597_rebuilding_a_projection_with_no_matching_events_but_other_non_matching_events.cs │ │ ├── Bug_3059_double_application.cs │ │ ├── Bug_3080_WaitForNonStaleData_should_work_dammit.cs │ │ ├── Bug_3221_assert_on_wrong_identity_type_from_multi_stream_projection_to_slicer.cs │ │ ├── Bug_3764_fanout_and_transactions.cs │ │ ├── Bug_3802_projection_rebuild_skips_document_in_skip_mode.cs │ │ ├── Bug_deletewhere_should_remove_inserted_item.cs │ │ ├── Bug_projection_base_settings_must_be_used_by_deamon.cs │ │ └── Bug_sequential_rebuilds_throws_internally.cs │ ├── Coordination │ │ ├── AdvisoryLocksTest.cs │ │ ├── HotCold_leadership_election.cs │ │ └── blue_green_projection_deployments.cs │ ├── DaemonTests.csproj │ ├── EventProjections │ │ ├── EventProjectionWithCreate_follow_up_operations.cs │ │ ├── EventProjection_follow_up_operations.cs │ │ ├── event_projection_scenario_tests.cs │ │ ├── event_projections_end_to_end.cs │ │ ├── event_projections_end_to_end_ihost.cs │ │ ├── using_custom_projection_that_depends_on_identity_map_behavior.cs │ │ └── using_patches_in_async_mode.cs │ ├── FlatTableProjections │ │ ├── ValuesAdded.cs │ │ ├── ValuesDeleted.cs │ │ ├── ValuesSet.cs │ │ ├── ValuesSubtracted.cs │ │ ├── WriteTableWithGuidIdentifierProjection.cs │ │ └── end_to_end_with_flat_table_projections.cs │ ├── HealthChecks │ │ ├── AsyncDaemonHealthCheckExtensionsTests.cs │ │ └── AsyncDaemonHealthCheckExtensionsTestsHelpers.cs │ ├── Internals │ │ ├── AsyncOptionsTests.cs │ │ ├── GapDetectorTest.cs │ │ ├── HighWaterAgentTests.cs │ │ ├── basic_functionality.cs │ │ ├── detecting_the_high_water_mark.cs │ │ ├── fetching_events.cs │ │ ├── pausing_and_resuming_the_daemon.cs │ │ ├── projection_progression_operations.cs │ │ └── service_registrations.cs │ ├── MultiTenancy │ │ ├── dynamic_spin_up_of_dynamic_tenants.cs │ │ ├── multi_tenancy_by_database.cs │ │ └── using_for_tenant_with_side_effects_and_subscriptions.cs │ ├── Resiliency │ │ ├── error_handling_defaults.cs │ │ ├── rebuilds_with_serialization_or_poison_pill_events.cs │ │ ├── skipping_unknown_event_types_in_continuous_builds.cs │ │ └── when_skipping_events_in_daemon.cs │ ├── Subscriptions │ │ ├── SubscriptionSamples.cs │ │ ├── subscribe_from_present.cs │ │ ├── subscription_configuration.cs │ │ └── subscriptions_end_to_end.cs │ ├── TestSetup.cs │ ├── TestingSupport │ │ ├── Arrival.cs │ │ ├── DaemonContext.cs │ │ ├── Departure.cs │ │ ├── Direction.cs │ │ ├── IDayEvent.cs │ │ ├── Movement.cs │ │ ├── Stop.cs │ │ ├── TestLogger.cs │ │ ├── Travel.cs │ │ ├── Trip.cs │ │ ├── TripAborted.cs │ │ ├── TripEnded.cs │ │ ├── TripProjectionWithCustomName.cs │ │ ├── TripStarted.cs │ │ └── TripStream.cs │ ├── catching_up_mode_for_projections_and_subscriptions.cs │ └── wait_for_non_stale_data_error_cases.cs ├── Directory.Packages.props ├── DocumentDbTests │ ├── AssemblyInfo.cs │ ├── Bugs │ │ ├── Batch_query_load_fails_with_multi_tenant_document.cs │ │ ├── BigIntegerTests.cs │ │ ├── Bug_1002_new_duplicate_field_write_patch_syntax_error.cs │ │ ├── Bug_1011_have_to_be_able_to_override_dbtype_on_duplicated_field.cs │ │ ├── Bug_1018_multi_key_unique_index_schema_update_assert_failure.cs │ │ ├── Bug_1060_invalid_cast_exception_on_doc_with_subclass.cs │ │ ├── Bug_1061_string_enum_serialization_does_not_work_with_ginindexjsondata.cs │ │ ├── Bug_113_same_named_class_different_namespaces.cs │ │ ├── Bug_1155_null_duplicate_fields.cs │ │ ├── Bug_127_do_not_recreate_a_table_with_duplicated_string_field_Tests.cs │ │ ├── Bug_130_enable_case_insensitive_custom_sql_queries_Tests.cs │ │ ├── Bug_1416_foreign_key_with_document_alias.cs │ │ ├── Bug_1429_fk_ordering_problems.cs │ │ ├── Bug_1454_comparison_between_data_offset_in_child_collection.cs │ │ ├── Bug_1563_user_friendly_warning_about_public_type.cs │ │ ├── Bug_1647_cannot_use_Task_as_document_name.cs │ │ ├── Bug_1779_null_comparison_to_foreign_key_column_not_generating_is_null.cs │ │ ├── Bug_1821_schema_validation_fails_if_document_has_indexes_or_foreign_keys.cs │ │ ├── Bug_1822_recreating_index_fails_if_there_are_more_than_one_change.cs │ │ ├── Bug_1841_float_as_duplicated_field.cs │ │ ├── Bug_1871_includes_with_snake_case_json.cs │ │ ├── Bug_1872_concurrent_creation_of_document_mappings.cs │ │ ├── Bug_187_not_assigning_id_in_BulkInsert_Tests.cs │ │ ├── Bug_1975_bulk_insert_of_nested_guid.cs │ │ ├── Bug_1982_custom_index_with_include.cs │ │ ├── Bug_1984_need_to_recursively_reference_assemblies_in_lamar_code_generation.cs │ │ ├── Bug_1994_insert_update_on_same_object_in_transaction.cs │ │ ├── Bug_2018_fts_string_list.cs │ │ ├── Bug_2049_custom_id_generation_code_gen.cs │ │ ├── Bug_2169_concurrency_error.cs │ │ ├── Bug_2211_select_transform_inner_object.cs │ │ ├── Bug_2283_problems_with_duplicated_DateTime_fields.cs │ │ ├── Bug_2327_using_identity_extension_on_class_with_invalid_type_id_field.cs │ │ ├── Bug_237_duplicate_indexing_Tests.cs │ │ ├── Bug_2523_using_query_on_custom_storage_table.cs │ │ ├── Bug_2660_deletes_in_complex_order.cs │ │ ├── Bug_274_cyclic_dependency_found_Tests.cs │ │ ├── Bug_2914_NGram_index_getting_recreated.cs │ │ ├── Bug_2942_include_error.cs │ │ ├── Bug_2955_allow_for_same_aliased_entity_in_multiple_schemas.cs │ │ ├── Bug_2983_DateTimeOffset_index_being_erroneously_recreated.cs │ │ ├── Bug_3173_fulltextindex_should_map_properties.cs │ │ ├── Bug_3194_gist_index_on_object_array.cs │ │ ├── Bug_3274_include_pagedlist_with_mapped_tenantid.cs │ │ ├── Bug_336_completely_remove_crosses_schema_lines.cs │ │ ├── Bug_3378_jsonb_ops_index_syntax.cs │ │ ├── Bug_339_async_cache_problem.cs │ │ ├── Bug_3464_Include_with_SingleOrDefault.cs │ │ ├── Bug_3708_NGram_in_other_schema.cs │ │ ├── Bug_3778_schema_name_issue.cs │ │ ├── Bug_382_bulk_insert_that_causes_multiple_batches.cs │ │ ├── Bug_393_issue_with_identity_map.cs │ │ ├── Bug_416_cannot_create_index_on_datetime_field.cs │ │ ├── Bug_431_not_patching_with_the_doc_type_column.cs │ │ ├── Bug_495_concurrent_check_by_not_first_loading_from_the_session.cs │ │ ├── Bug_550_schema_diff_with_precision.cs │ │ ├── Bug_553_ForeignKey_attribute_is_not_creating_an_index.cs │ │ ├── Bug_571_defensive_check_for_IEnumerable_of_T_in_Store.cs │ │ ├── Bug_620_alias_bool.cs │ │ ├── Bug_621_bulk_insert_with_optimistic_concurrency.cs │ │ ├── Bug_628_fk_from_doc_to_itself.cs │ │ ├── Bug_635_operations_order_in_same_session.cs │ │ ├── Bug_648_defensive_programming_checks_on_bad_id_type.cs │ │ ├── Bug_654_document_session_delete_Tests.cs │ │ ├── Bug_673_multiple_version_assertions.cs │ │ ├── Bug_772_index_wrapping_column_does_not_match_DDL.cs │ │ ├── Bug_837_missing_func_mt_immutable_timestamp_when_initializing_with_new_Schema.cs │ │ ├── Bug_902_generic_type_documents.cs │ │ ├── Bug_931_duplicate_field_att_not_working_for_array_or_list.cs │ │ ├── Bug_953_too_long_index_names.cs │ │ ├── Bug_957_duplicating_a_string_array.cs │ │ ├── Bug_960_drop_index_concurrently_pg_error.cs │ │ ├── Bug_961_custom_identity_field_with_fk.cs │ │ ├── Bug_964_optimistic_concurrency_with_subclass.cs │ │ ├── Bug_980_bulk_insert_with_subclass.cs │ │ ├── Bug_986_duplicated_fields_with_int_array.cs │ │ ├── Bug_PR_1412_spaces_in_table_name_cause_schema_patch_to_fail.cs │ │ ├── Bug_PR_2277_upsert_deleted_with_unique_key.cs │ │ ├── SelfForeignKeyBugs.cs │ │ ├── SubClassForeignKeyBugs.cs │ │ ├── ability_to_persist_generic_types.cs │ │ ├── ability_to_persist_nested_types_Tests.cs │ │ ├── bug_1338_Validate_Null_ForeignKeyDefinition_ReferenceDocumenType.cs │ │ ├── identity_map_with_records.cs │ │ ├── optimistic_concurrency_with_update_method.cs │ │ └── querying_child_collections_impact_each_other.cs │ ├── Concurrency │ │ ├── numeric_revisioning.cs │ │ └── optimistic_concurrency.cs │ ├── Configuration │ │ ├── DocumentMappingTests.cs │ │ ├── MartenRegistryTests.cs │ │ ├── ability_to_add_custom_storage_features.cs │ │ ├── configuring_the_document_type_alias.cs │ │ ├── document_policies.cs │ │ ├── document_policies_for_metadata.cs │ │ └── ignoring_indexes_on_document_table.cs │ ├── Deleting │ │ ├── configuring_mapping_deletion_style.cs │ │ ├── delete_a_single_document.cs │ │ ├── delete_many_documents_by_query.cs │ │ ├── deleting_multiple_documents.cs │ │ └── soft_deletes.cs │ ├── DocumentDbTests.csproj │ ├── ForeignKeys │ │ ├── configuring_foreign_key_fields.cs │ │ └── foreign_keys.cs │ ├── HierarchicalStorage │ │ ├── BasePolicy.cs │ │ ├── Bug_1247_end_to_end_query_with_include_and_document_hierarchy_Tests.cs │ │ ├── Bug_1484_store_overloads_Tests.cs │ │ ├── IPolicy.cs │ │ ├── IVersioned.cs │ │ ├── LinuxPolicy.cs │ │ ├── OsPolicy.cs │ │ ├── PolicyType.cs │ │ ├── WindowsPolicy.cs │ │ ├── delete_by_where_for_hierarchy_Tests.cs │ │ ├── end_to_end_document_hierarchy_usage_Tests.cs │ │ ├── end_to_end_document_hierarchy_with_interface_tests.cs │ │ ├── persist_and_load_for_hierarchy_Tests.cs │ │ ├── query_through_mixed_population_Tests.cs │ │ └── query_through_mixed_population_multi_tenanted.cs │ ├── Indexes │ │ ├── NgramSearchTests.cs │ │ ├── UniqueIndexTests.cs │ │ ├── computed_indexes.cs │ │ ├── duplicated_field.cs │ │ ├── full_text_index.cs │ │ └── unique_indexes.cs │ ├── Internal │ │ └── Generated │ │ │ └── DocumentStorage │ │ │ └── RevisionedDocProvider1212098993.cs │ ├── Metadata │ │ ├── assigning_versions_to_documents.cs │ │ ├── created_timestamp_queries.cs │ │ ├── end_to_end_versioned_docs.cs │ │ ├── fetching_entity_metadata.cs │ │ ├── flexible_document_metadata.cs │ │ ├── getting_and_setting_headers.cs │ │ ├── last_modified_queries.cs │ │ ├── metadata_marker_interfaces.cs │ │ └── projecting_metadata_to_documents.cs │ ├── MultiTenancy │ │ ├── MultiTenancyFixture.cs │ │ ├── UniqueIndexMultiTenantTests.cs │ │ ├── conjoined_multi_tenancy.cs │ │ ├── conjoined_multi_tenancy_with_partitioning.cs │ │ ├── disabling_default_tenant_usage.cs │ │ └── mixed_single_and_conjoined_tenancy.cs │ ├── Operations │ │ └── TruncateTableTests.cs │ ├── Reading │ │ ├── BatchedQuerying │ │ │ ├── batched_querying_acceptance_Tests.cs │ │ │ ├── batched_querying_with_aggregate_functions.cs │ │ │ └── batched_querying_with_order_functions.cs │ │ ├── Json │ │ │ ├── document_session_find_json_Tests.cs │ │ │ ├── document_session_find_json_async_Tests.cs │ │ │ ├── get_raw_json_Tests.cs │ │ │ └── streaming_json_results.cs │ │ ├── Loading │ │ │ ├── document_session_load_already_loaded_document_Tests.cs │ │ │ ├── document_session_load_document.cs │ │ │ └── document_session_load_not_yet_persisted_document_Tests.cs │ │ ├── UserName.cs │ │ ├── advanced_sql_query.cs │ │ ├── query_by_sql.cs │ │ └── query_plans.cs │ ├── SessionMechanics │ │ ├── DocumentSession_change_set_tracking_Tests.cs │ │ ├── DocumentSession_disposal_locking.cs │ │ ├── StubDocumentSessionListener.cs │ │ ├── UnitOfWorkExtensions.cs │ │ ├── UnitOfWork_Operation_Ordering_Tests.cs │ │ ├── UnitOfWork_PendingChanges_Functionality_Tests.cs │ │ ├── Using_Global_DocumentSessionListener_Tests.cs │ │ ├── Using_Local_DocumentSessionListener_Tests.cs │ │ ├── dirty_tracked_sessions.cs │ │ ├── document_session_logs_SaveChanges.cs │ │ ├── ejecting_all_pending_changes.cs │ │ ├── ejecting_documents.cs │ │ ├── identity_map_mechanics.cs │ │ ├── reset_all_data_usage.cs │ │ ├── serializable_transactions.cs │ │ ├── session_timeouts.cs │ │ └── updating_by_batch.cs │ ├── TestSetup.cs │ ├── Writing │ │ ├── Identity │ │ │ ├── Sequences │ │ │ │ ├── Bug_1404_Hilo_concurrent_update_failure.cs │ │ │ │ ├── Bug_255_Hilo_table_being_erroneously_recreated.cs │ │ │ │ ├── CombGuidIdGenerationTests.cs │ │ │ │ ├── CustomKeyGenerationTests.cs │ │ │ │ ├── DocumentIdStrategyTests.cs │ │ │ │ ├── IdentityKeyGenerationTests.cs │ │ │ │ ├── Users.cs │ │ │ │ ├── hilo_configuration_overrides.cs │ │ │ │ └── hilo_tests.cs │ │ │ ├── auto_assign_missing_guid_ids_Tests.cs │ │ │ ├── private_identity_fields.cs │ │ │ ├── using_int_identity.cs │ │ │ ├── using_long_identity.cs │ │ │ ├── using_natural_identity_keys.cs │ │ │ └── using_string_identity.cs │ │ ├── bulk_loading.cs │ │ ├── document_inserts.cs │ │ ├── document_updates.cs │ │ └── storing_documents.cs │ ├── duplicate_document_type_alias_detection.cs │ └── persist_and_query_via_dynamic.cs ├── EventAppenderPerfTester │ ├── EventAppenderPerfTester.csproj │ ├── ExportCommand.cs │ ├── ITestPlan.cs │ ├── MultiplesTestPlan.cs │ ├── Program.cs │ ├── ReadCommand.cs │ ├── Results.md │ ├── SingleFileFetchForWritingPlan.cs │ ├── SingleFileSimplePlan.cs │ ├── TestCommand.cs │ ├── TestInput.cs │ ├── TestType.cs │ ├── TripStreamReaderWriter.cs │ └── data.json ├── EventPublisher │ ├── EventPublisher.csproj │ ├── Program.cs │ └── StatusBoard.cs ├── EventSourceWorker │ ├── EventSourceWorker.csproj │ ├── NewTripHandler.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Worker.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── EventSourcingTests │ ├── Aggregation │ │ ├── AggregationContext.cs │ │ ├── AggregationTestingSupport.cs │ │ ├── OrderAggregate.cs │ │ ├── aggregate_stream_into_samples.cs │ │ ├── aggregate_stream_returns_null_if_the_aggregate_is_null_at_that_point_in_stream.cs │ │ ├── aggregate_stream_samples.cs │ │ ├── aggregates_should_be_registered_as_document_mappings_automatically.cs │ │ ├── aggregation_projection_validation_rules.cs │ │ ├── blue_green_deployment_of_aggregates.cs │ │ ├── explicit_code_for_aggregation_logic.cs │ │ ├── global_tenanted_streams_within_conjoined_tenancy.cs │ │ ├── live_aggregation_without_an_aggregate_identifier.cs │ │ ├── querying_with_non_stale_data.cs │ │ ├── rebuilding_a_single_stream_projection.cs │ │ ├── setting_version_number_on_aggregate.cs │ │ ├── stream_compacting.cs │ │ ├── strong_typed_identifiers_on_aggregates_must_be_nullable.cs │ │ ├── time_travelling_samples.cs │ │ ├── using_apply_metadata.cs │ │ ├── using_event_filtering_within_inline_aggregations.cs │ │ ├── using_guid_based_strong_typed_id_for_aggregate_identity.cs │ │ ├── using_string_based_strong_typed_id_for_aggregate_identity.cs │ │ ├── when_doing_inline_per_stream_aggregations_with_Guid_stream_identity.cs │ │ ├── when_doing_live_aggregations.cs │ │ ├── when_enriching_events_for_aggregation_projections.cs │ │ ├── when_finding_the_last_good_aggregation.cs │ │ ├── when_using_inline_lambdas_to_define_immutable_projection.cs │ │ ├── when_using_inline_lambdas_to_define_the_projection.cs │ │ └── write_to_aggregate.cs │ ├── AssemblyInfo.cs │ ├── Bugs │ │ ├── Bug_1019_event_type_not_found_bad_exception_message.cs │ │ ├── Bug_1069_using_generic_event_types_because_why_not.cs │ │ ├── Bug_1679_use_inner_type_for_stream_aggregation.cs │ │ ├── Bug_1723_inline_projections_get_cut_off.cs │ │ ├── Bug_1754_multiple_event_stream_creations_one_session.cs │ │ ├── Bug_1758_creating_stream_runs_extra_selects_and_deletes.cs │ │ ├── Bug_1781_inline_projection_foreign_key_constraint_failure.cs │ │ ├── Bug_2011_streams_should_be_getting_correct_timestamp.cs │ │ ├── Bug_2025_event_inheritance_in_projection.cs │ │ ├── Bug_2143_append_exclusive_then_append_throws_when_saving_changes.cs │ │ ├── Bug_2220_DeadLetterEvent_should_be_Feature_if_events_are_active.cs │ │ ├── Bug_2260_tombstone_events_violate_streamid_version_uniqueness.cs │ │ ├── Bug_2281_stream_action_without_events_save_changes_throws.cs │ │ ├── Bug_2289_tombstone_events_violate_seq_id_uniqueness.cs │ │ ├── Bug_2296_tenant_session_in_grouper.cs │ │ ├── Bug_2465_make_event_serialization_strategy_be_lazy.cs │ │ ├── Bug_2528_projections_should_handle_each_event_once.cs │ │ ├── Bug_2666_create_or_apply_but_not_both_should_apply.cs │ │ ├── Bug_2865_configuration_assertion_with_flat_table_projections.cs │ │ ├── Bug_2883_ievent_not_working_as_identity_source_in_multistream_projections.cs │ │ ├── Bug_2978_aggregate_projection_documents_are_not_optimistic_concurrency_event_with_that_policy.cs │ │ ├── Bug_3184_Projection_named_Projection.cs │ │ ├── Bug_3310_inline_projections_with_quick_append.cs │ │ ├── Bug_3643_using_struct_in_map_flattableprojection.cs │ │ ├── Bug_3661_await_custom_projection_slicing.cs │ │ ├── Bug_3665_compiling_with_private_members.cs │ │ ├── Bug_3769_query_for_non_stale_projection_with_custom_projection.cs │ │ ├── Bug_3791_migrating_from_no_partitioning_to_having_partitioning.cs │ │ ├── Bug_3851_should_use_document_mapping_from_store_options_for_id_member.cs │ │ ├── Bug_3874_able_to_read_archived_and_tombstone_from_older_names.cs │ │ ├── Bug_3880_able_to_use_different_event_types_with_same_name.cs │ │ ├── Bug_3942_string_only_record.cs │ │ ├── Bug_3946_tenancy_with_for_tenant_and_projection_issues.cs │ │ ├── Bug_3995_start_stream_with_for_tenant_and_aggregate_type_mapper.cs │ │ ├── codegen_issue_with_IEvent.cs │ │ └── nulls_in_event_name_cache.cs │ ├── EventGraphTests.cs │ ├── EventMappingTests.cs │ ├── EventSequenceFetcherTests.cs │ ├── EventSourcingTests.csproj │ ├── EventStreamUnexpectedMaxEventIdExceptionTransformTest.cs │ ├── Examples │ │ ├── DaemonUsage.cs │ │ ├── ErrorHandling.cs │ │ ├── EventSkipping.cs │ │ ├── FetchLatest.cs │ │ ├── MetadataExamples.cs │ │ ├── MigrationSamples.cs │ │ ├── MultiTenancyExamples.cs │ │ ├── NamingStyles.cs │ │ ├── Optimizations.cs │ │ ├── OptimizedCommandHandling.cs │ │ ├── Project.cs │ │ ├── SampleEventProjection.cs │ │ ├── StartStreamSamples.cs │ │ ├── TeleHealth │ │ │ ├── Board.cs │ │ │ ├── BoardViewProjection.cs │ │ │ └── TeleHealthSample.cs │ │ ├── TrackedEventProjection.cs │ │ ├── TripProjectionWithEventMetadata.cs │ │ ├── UsingInlineSideEffects.cs │ │ └── event_store_quickstart.cs │ ├── FakeAggregate.cs │ ├── FetchForWriting │ │ ├── fetch_for_writing_and_projection_metadata_for_inline_projections.cs │ │ ├── fetch_latest_async_aggregate.cs │ │ ├── fetch_latest_inline_aggregate.cs │ │ ├── fetch_latest_live_aggregate.cs │ │ ├── fetching_async_aggregates_for_writing.cs │ │ ├── fetching_inline_aggregates_for_writing.cs │ │ └── fetching_live_aggregates_for_writing.cs │ ├── Json │ │ └── JsonSerializationTests.cs │ ├── Metadata │ │ └── overriding_metadata_on_appends.cs │ ├── Projections │ │ ├── AggregationProjectionTests.cs │ │ ├── CodeGeneration │ │ │ └── aggregation_with_event_type_hierarchy.cs │ │ ├── EventProjectionTests.cs │ │ ├── EventProjections │ │ │ └── EventProjectionOrderingTests.cs │ │ ├── Flattened │ │ │ ├── FlatTableProjectionTests.cs │ │ │ ├── StatementMapTests.cs │ │ │ ├── ValuesAdded.cs │ │ │ ├── ValuesDeleted.cs │ │ │ ├── ValuesSet.cs │ │ │ ├── ValuesSubtracted.cs │ │ │ ├── WriteTableWithGuidIdentifierProjection.cs │ │ │ ├── flat_table_projection_with_event_member_identifier_end_to_end.cs │ │ │ ├── flat_table_projection_with_stream_id_identifier_end_to_end.cs │ │ │ └── flat_table_projection_with_stream_key_identifier_end_to_end.cs │ │ ├── MonsterSlayed.cs │ │ ├── MultiStreamProjections │ │ │ ├── CustomGroupers │ │ │ │ ├── custom_grouper_with_document_session.cs │ │ │ │ ├── custom_grouper_with_events_transformation.cs │ │ │ │ └── custom_slicer.cs │ │ │ ├── TestClasses.cs │ │ │ ├── rolling_up_by_tenant.cs │ │ │ ├── simple_multi_stream_projection.cs │ │ │ └── simple_multi_stream_projection_wih_one_to_many.cs │ │ ├── MultiTenants │ │ │ └── ConjoinedTenancyProjectionsTests.cs │ │ ├── QuestMonsters.cs │ │ ├── QuestParty.cs │ │ ├── QuestPartyWithEvents.cs │ │ ├── SingleStreamProjectionTests.cs │ │ ├── custom_transformation_of_events.cs │ │ ├── hiearchy_projection.cs │ │ ├── include_extra_schema_objects_from_projections.cs │ │ ├── inline_aggregation_by_stream_with_multiples.cs │ │ ├── inline_aggregation_with_base_view_class.cs │ │ ├── inline_aggregation_with_custom_projection_configuration.cs │ │ ├── inline_aggregation_with_non_public_setter.cs │ │ ├── inline_aggregation_with_private_constructor.cs │ │ ├── inline_aggregation_with_subclass.cs │ │ ├── inline_transformation_of_events.cs │ │ ├── stream_aggregation.cs │ │ ├── testing_projections.cs │ │ ├── using_explicit_code_for_live_aggregation.cs │ │ ├── using_non_concrete_types_in_projections.cs │ │ └── when_registering_a_custom_projection_type.cs │ ├── QuestTypes.cs │ ├── QuickAppend │ │ ├── Examples.cs │ │ ├── QuestPartyWithStringIdentifier.cs │ │ ├── StringIdentifiedStreamsCollection.cs │ │ ├── StringIdentifiedStreamsFixture.cs │ │ ├── quick_append_end_to_end.cs │ │ ├── quick_append_event_capture_and_fetching_the_stream.cs │ │ ├── quick_append_event_capture_and_fetching_the_stream_with_string_identifiers.cs │ │ ├── quick_append_events_with_optimistic_or_exclusive_locks.cs │ │ ├── quick_append_timestamp.cs │ │ ├── quick_append_with_server_timestamps_end_to_end.cs │ │ └── quick_appending_events_workflow_specs.cs │ ├── ScenarioAggregateAndRepository.cs │ ├── ScenarioCopyAndReplaceStream.cs │ ├── SchemaChange │ │ ├── MultipleVersions │ │ │ ├── Classes │ │ │ │ ├── ClrUpcastConfiguration.cs │ │ │ │ ├── JsonNetUpcastConfiguration.cs │ │ │ │ └── SystemTextJsonUpcastConfiguration.cs │ │ │ ├── Lambdas │ │ │ │ ├── ClrUpcastConfiguration.cs │ │ │ │ ├── JsonNetUpcastConfiguration.cs │ │ │ │ └── SystemTextJsonUpcastConfiguration.cs │ │ │ ├── MultipleSchemaVersions.cs │ │ │ └── ShoppingCart.cs │ │ ├── NamespaceChange.cs │ │ ├── SimpleMappings.cs │ │ └── Upcasters.cs │ ├── StubEventStreamTests.cs │ ├── Utils │ │ └── MultipleActionCheck.cs │ ├── advanced_async_tracking.cs │ ├── aggregateto_linq_operator_tests.cs │ ├── append_events_with_optimistic_or_exclusive_locks.cs │ ├── appending_events_workflow_specs.cs │ ├── archiving_events.cs │ ├── asserting_on_expected_event_version_on_append.cs │ ├── building_events_and_streams_table_based_on_partitioning.cs │ ├── cannot_register_duplicate_projections_by_name.cs │ ├── cannot_start_a_stream_with_zero_events.cs │ ├── capturing_event_versions_on_existing_streams_after_append.cs │ ├── delete_single_event_stream.cs │ ├── determining_the_event_store_identity.cs │ ├── end_to_end_event_capture_and_fetching_the_stream.cs │ ├── end_to_end_event_capture_and_fetching_the_stream_with_string_identifiers.cs │ ├── event_statistics.cs │ ├── event_store_with_string_identifiers_for_stream.cs │ ├── event_wrapper_must_be_serializable.cs │ ├── fetch_a_single_event_with_metadata.cs │ ├── fetching_event_store_floor_by_time.cs │ ├── fetching_stream_state.cs │ ├── flexible_event_metadata.cs │ ├── generating_event_store_descriptors.cs │ ├── get_committed_events_from_listener_Tests.cs │ ├── jasperfx_event_store_mechanics.cs │ ├── mandatory_stream_type_behavior.cs │ ├── marking_events_as_skipped_as_Guid_identified.cs │ ├── marking_events_as_skipped_as_string_identified.cs │ ├── marking_stream_as_isnew_on_capture.cs │ ├── multi_tenancy_and_event_capture.cs │ ├── no_prior_registration_of_the_event_types.cs │ ├── opting_into_index_on_event_id.cs │ ├── protecting_sensitive_data.cs │ ├── querying_event_data_with_linq.cs │ ├── removing_protected_information.cs │ ├── replacing_events.cs │ ├── schema_object_management.cs │ └── start_stream_should_enforce_that_it_is_a_new_stream.cs ├── EventStoreMigrations │ ├── EventStoreMigrations.csproj │ ├── Program.cs │ └── TestCommand.cs ├── FSharpTypes │ ├── FSharpTypes.fsproj │ └── Library.fs ├── IssueService │ ├── Controllers │ │ ├── IssueController.cs │ │ ├── JsonController.cs │ │ ├── PaymentController.cs │ │ └── ThingController.cs │ ├── IssueService.csproj │ ├── MartenSettings.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── LinqTests │ ├── Acceptance │ │ ├── Support │ │ │ ├── DefaultQueryFixture.cs │ │ │ ├── LinqTestCase.cs │ │ │ ├── LinqTestContext.cs │ │ │ ├── OrderedSelectComparison.cs │ │ │ ├── SelectTransform.cs │ │ │ ├── TargetComparison.cs │ │ │ └── TargetSchemaFixture.cs │ │ ├── against_date_time_offset.cs │ │ ├── casing_support.cs │ │ ├── chained_where_clauses.cs │ │ ├── child_collection_queries.cs │ │ ├── custom_identity_members.cs │ │ ├── custom_linq_extensions.cs │ │ ├── date_type_usage.cs │ │ ├── deep_searches.cs │ │ ├── diagnostic_methods.cs │ │ ├── dictionary_usage.cs │ │ ├── enum_usage.cs │ │ ├── equals_method_usage_validation.cs │ │ ├── identity_map_mechanics.cs │ │ ├── json_naming_attributes.cs │ │ ├── matches_sql_queries.cs │ │ ├── nested_boolean_logic.cs │ │ ├── null_or_not_null_querying.cs │ │ ├── nullable_types.cs │ │ ├── number_filtering.cs │ │ ├── order_by_clauses.cs │ │ ├── order_by_sql.cs │ │ ├── query_with_inheritance.cs │ │ ├── querying_against_timespan.cs │ │ ├── select_clause_usage.cs │ │ ├── select_clauses.cs │ │ ├── select_many.cs │ │ ├── statistics_and_paged_list.cs │ │ ├── string_filtering.cs │ │ ├── take_and_skip.cs │ │ ├── using_dynamic_props.cs │ │ ├── using_explicit_sql_in_select_clauses.cs │ │ ├── where_clauses.cs │ │ └── where_clauses_fsharp.cs │ ├── AssemblyInfo.cs │ ├── Bugs │ │ ├── Bug_1189_can_select_transform_without_an_id.cs │ │ ├── Bug_118_bad_exception_message_Tests.cs │ │ ├── Bug_1217_order_by_count_of_sub_collection.cs │ │ ├── Bug_1219_ordering_by_attributes.cs │ │ ├── Bug_1245_include_plus_full_text_search.cs │ │ ├── Bug_1256_querying_against_a_uint_type.cs │ │ ├── Bug_1325_Any_with_contains_on_IList_of_string.cs │ │ ├── Bug_1413_not_inside_of_where_against_child_collection.cs │ │ ├── Bug_1473_warn_about_custom_value_types_in_linq.cs │ │ ├── Bug_1683_query_against_dict_string_object.cs │ │ ├── Bug_1703_Equality_Not_Symmetric.cs │ │ ├── Bug_1851_need_to_recursively_reference_assemblies_in_generic_type_parameters_of_compiled_queries.cs │ │ ├── Bug_1875_duplicated_array_field_test.cs │ │ ├── Bug_1884_multi_tenancy_and_Any_query.cs │ │ ├── Bug_1886_compiled_query_value_retention.cs │ │ ├── Bug_1891_compiled_query_problem.cs │ │ ├── Bug_1951_querying_against_nested_enum.cs │ │ ├── Bug_2057_select_transform_dictionary.cs │ │ ├── Bug_2198_querying_against_UTC_DateTime_with_Npgsql.cs │ │ ├── Bug_2213_explanatory_exception_on_usage_of_coalescing_operator_in_select.cs │ │ ├── Bug_2223_list_contains_any_generates_invalid_sql.cs │ │ ├── Bug_2224_Include_needs_to_respect_Take_and_Skip_in_main_body.cs │ │ ├── Bug_2282_SOE_on_hiearchical_usage.cs │ │ ├── Bug_2383_contains_in_where_clause.cs │ │ ├── Bug_2433_include_with_take.cs │ │ ├── Bug_2553_Include_with_ToPagedList.cs │ │ ├── Bug_2563_sub_collection_queries_and_OR.cs │ │ ├── Bug_260_Take_Skip_with_Select_Tests.cs │ │ ├── Bug_2618_Include_with_AnyTenant.cs │ │ ├── Bug_261_double_take_or_skip.cs │ │ ├── Bug_2649_select_and_distinct_string_with_ordering.cs │ │ ├── Bug_276_Query_by_abstract_type_in_hierarchy.cs │ │ ├── Bug_2810_distinct_plus_include.cs │ │ ├── Bug_2850_missed_field_reducing.cs │ │ ├── Bug_2895_no_stack_overflow_please.cs │ │ ├── Bug_2896_count_plus_HashSet.cs │ │ ├── Bug_2934_multiple_nested_conditionals.cs │ │ ├── Bug_2935_any_contains_in_child_collection.cs │ │ ├── Bug_2936_static_list.cs │ │ ├── Bug_2937_string_isnullorempty_being_ignored.cs │ │ ├── Bug_2946_querying_on_value_collection_of_enums_serialized_as_string.cs │ │ ├── Bug_3003_negation_and_list_of_guids.cs │ │ ├── Bug_3017_SelectMany_with_LongCount.cs │ │ ├── Bug_3024_wildcards_in_string_insensitive_comparisons.cs │ │ ├── Bug_3027_using_string_null_check.cs │ │ ├── Bug_3030_nested_array_queries.cs │ │ ├── Bug_3031_querying_using_soft_deletes.cs │ │ ├── Bug_3032_serialization_error_combined_Select_and_Include.cs │ │ ├── Bug_3035_crazy_nested_boolean_conditions.cs │ │ ├── Bug_3065_include_query_with_conjoined_tenancy.cs │ │ ├── Bug_3066_calling_static_methods_in_queries.cs │ │ ├── Bug_3067_nested_array_in_dictionary.cs │ │ ├── Bug_3082_trouble_with_repeated_include_usage.cs │ │ ├── Bug_3087_using_JsonPath_with_MatchesSql.cs │ │ ├── Bug_3096_include_where_select.cs │ │ ├── Bug_3116_more_expression_to_constant_issues.cs │ │ ├── Bug_3117_select_directly_to_DateTime.cs │ │ ├── Bug_3126_dictionary_nested_queries.cs │ │ ├── Bug_3151_using_duplicated_fields_in_linq_queries.cs │ │ ├── Bug_3337_select_page.cs │ │ ├── Bug_3350_Select_with_deep_accessor.cs │ │ ├── Bug_3351_Include_with_ToPagedListAsync.cs │ │ ├── Bug_337_certain_boolean_searches_are_not_using_searchable_field.cs │ │ ├── Bug_3610_enum_array_as_string_in_compiled_query.cs │ │ ├── Bug_365_compiled_query_with_constant_fails.cs │ │ ├── Bug_432_querying_with_UTC_times_with_offset.cs │ │ ├── Bug_449_IsOneOf_query_with_enum_types.cs │ │ ├── Bug_479_select_datetime_fields.cs │ │ ├── Bug_484_Contains_on_IList_of_string.cs │ │ ├── Bug_490_hierarchy_and_include.cs │ │ ├── Bug_503_query_on_null_complex_object.cs │ │ ├── Bug_504_Take_Skip_before_Select_not_applying_sort_or_where_clause.cs │ │ ├── Bug_561_negation_of_query_on_contains.cs │ │ ├── Bug_582_and_592_Skip_and_Take_in_compiled_queries.cs │ │ ├── Bug_605_unary_expressions_in_where_clause_of_compiled_query.cs │ │ ├── Bug_606_string_contains_starts_or_ends_with_in_compiled_queries.cs │ │ ├── Bug_634_include_against_soft_deleted_docs.cs │ │ ├── Bug_717_permutation_of_Linq_queries.cs │ │ ├── Bug_784_Collection_Contains_within_compiled_query.cs │ │ ├── Bug_834_querying_inside_of_child_collections.cs │ │ ├── Bug_854_multiple_or_expressions_softdelete_tenancy_filters_appended_incorrectly.cs │ │ ├── Bug_899_operations_out_of_order_when_types_use_inheritance.cs │ │ ├── Bug_997_or_queries_with_hierarchical_docs.cs │ │ ├── Bug_using_literal_false_in_where_clause.cs │ │ ├── child_parent_inclusion_bug.cs │ │ ├── compiled_query_problem_with_includes_and_ICompiledQuery_reuse.cs │ │ ├── compiled_query_problem_with_nested_properties.cs │ │ ├── hashset_contains.cs │ │ └── query_with_order_by.cs │ ├── ChildCollections │ │ ├── ChildTestClasses.cs │ │ ├── count_for_child_collections.cs │ │ ├── query_against_child_collections.cs │ │ ├── query_with_inner_query_with_CollectionToArrayJsonConverter_onProperty.cs │ │ ├── query_with_inner_query_with_global_CollectionStorage_WithArray.cs │ │ └── querying_through_n_deep_sub_collections.cs │ ├── Compiled │ │ ├── compiled_queries.cs │ │ ├── compiled_query_by_string_fragments.cs │ │ └── validating_and_making_unique_query_class.cs │ ├── Includes │ │ ├── end_to_end_query_with_compiled_include.cs │ │ ├── end_to_end_query_with_include.cs │ │ ├── includes_with_custom_mapping.cs │ │ └── includes_with_filtering_on_included_documents.cs │ ├── Internals │ │ ├── BoolNotVisitorTests.cs │ │ ├── ComparisonBetweenFieldsFragmentTests.cs │ │ ├── ComparisonFilterTests.cs │ │ ├── DuplicatedFieldTests.cs │ │ ├── ExpressionExtensionsTests.cs │ │ ├── IsNullAndNotNullFilterTests.cs │ │ ├── NotWhereFragmentTests.cs │ │ └── SimpleExpressionTests.cs │ ├── LinqTests.csproj │ ├── Operators │ │ ├── aggregate_functions.cs │ │ ├── all_operator.cs │ │ ├── any_operator.cs │ │ ├── async_enumerable.cs │ │ ├── count_operator.cs │ │ ├── custom_marten_operators.cs │ │ ├── distinct_operator.cs │ │ ├── first_operator.cs │ │ ├── is_empty_operator.cs │ │ ├── is_one_of_operator.cs │ │ ├── is_subset_of_operator.cs │ │ ├── is_super_set_of_operator.cs │ │ ├── last_operator.cs │ │ ├── modulo_operator.cs │ │ ├── negation_operator.cs │ │ ├── single_operator.cs │ │ ├── string_compare_operator.cs │ │ └── to_list_operator.cs │ ├── SimpleUser.cs │ ├── SoftDeletes │ │ └── query_with_multiple_where_clauses_and_soft_deletes_configured.cs │ ├── TestSetup.cs │ ├── Usings.cs │ ├── playing.cs │ └── using_containment_operator_in_linq_Tests.cs ├── LinqTestsTypes │ └── LinqTestsTypes.csproj ├── Marten.AspNetCore.Testing │ ├── AppFixture.cs │ ├── AssemblyInfo.cs │ ├── Bug_2311_honoring_multi_tenancy_in_streaming.cs │ ├── Examples │ │ ├── MultipleMartenDatabasesIntegrationContext.cs │ │ ├── SimplifiedIntegrationContext.cs │ │ └── web_service_streaming_tests.cs │ ├── IntegrationCollection.cs │ ├── IntegrationContext.cs │ ├── Marten.AspNetCore.Testing.csproj │ ├── using_strong_typed_identifiers.cs │ └── web_service_streaming_tests.cs ├── Marten.AspNetCore │ ├── Daemon │ │ └── AsyncDaemonHealthCheckExtensions.cs │ ├── Marten.AspNetCore.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── QueryableExtensions.cs ├── Marten.CommandLine.Tests │ ├── Marten.CommandLine.Tests.csproj │ ├── ProjectionControllerTests.cs │ └── Usings.cs ├── Marten.NodaTime.Testing │ ├── Acceptance │ │ └── noda_time_acceptance.cs │ ├── AssemblyInfo.cs │ ├── Bug_2307_JObject_in_dictionary_duplicated_field.cs │ ├── Marten.NodaTime.Testing.csproj │ └── TestData │ │ └── TargetWithDates.cs ├── Marten.NodaTime │ ├── Marten.NodaTime.csproj │ └── NodaTimeExtensions.cs ├── Marten.Testing.OtherAssembly │ ├── Bug1851 │ │ ├── GenericOuter.cs │ │ └── StoredObjectInOtherAssembly.cs │ ├── Bug1984 │ │ └── GenericEntity.cs │ ├── DeeperNamespace │ │ └── BaseDocumentWithId.cs │ ├── Marten.Testing.OtherAssembly.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── ShortGuid.cs ├── Marten.Testing.ThirdAssembly │ ├── Bug1984 │ │ └── Data.cs │ └── Marten.Testing.ThirdAssembly.csproj ├── Marten.Testing │ ├── App.config │ ├── AssemblyInfo.cs │ ├── CodeTracker │ │ ├── ActiveProject.cs │ │ ├── BigBangRecorder.cs │ │ ├── CommitView.cs │ │ ├── Events.cs │ │ ├── GithubDataRecorder.cs │ │ ├── GithubProject.cs │ │ ├── IssueState.cs │ │ └── UserAction.cs │ ├── DevelopmentModeRegistry.cs │ ├── DocumentStoreExtensions.cs │ ├── Documents │ │ ├── Account.cs │ │ ├── Company.cs │ │ ├── CriticalIssue.cs │ │ ├── GuidDoc.cs │ │ ├── IntDoc.cs │ │ ├── InvalidDocument.cs │ │ ├── Issue.cs │ │ ├── LongDoc.cs │ │ ├── SingleTenantedDocument.cs │ │ ├── StringDoc.cs │ │ ├── Target.cs │ │ ├── TargetIntId.cs │ │ ├── User.cs │ │ └── UserWithInheritedId.cs │ ├── Examples │ │ ├── CompiledQuerySamples.cs │ │ ├── ConfiguringDatabaseSchemaName.cs │ │ ├── ConfiguringDocumentStore.cs │ │ ├── DDLCustomization.cs │ │ ├── Deletes.cs │ │ ├── DiagnosticsExamples.cs │ │ ├── DocumentCleanerExamples.cs │ │ ├── ErrorHandling.cs │ │ ├── ExplicitTransactions.cs │ │ ├── ExportingDDL.cs │ │ ├── FlatTableProjection.cs │ │ ├── ForeignKeyExamples.cs │ │ ├── IdExamples.cs │ │ ├── IdentityMapTests.cs │ │ ├── InExamples.cs │ │ ├── IsOneOfExamples.cs │ │ ├── LinqExamples.cs │ │ ├── Load_by_Id.cs │ │ ├── MartenRegistryExamples.cs │ │ ├── MetadataUsage.cs │ │ ├── MigrationSamples.cs │ │ ├── MultiPropertyCalculatedIndexExamples.cs │ │ ├── MultiTenancy.cs │ │ ├── OpeningAQuerySession.cs │ │ ├── OpeningASessionAsync.cs │ │ ├── OtelSamples.cs │ │ ├── Policies.cs │ │ ├── QueryBySql.cs │ │ ├── RebuildRunner.cs │ │ ├── RecordingLogger.cs │ │ ├── RevisionedDocuments.cs │ │ ├── SagaStorageExample.cs │ │ ├── ScenarioUsingSequenceForUniqueId.cs │ │ ├── Searching_Within_Child_Collections.cs │ │ ├── Setting_Timestamp_on_all_changes_by_base_class_Tests.cs │ │ ├── SimpleSessionListener.cs │ │ ├── StoringDocuments.cs │ │ ├── UnitOfWorkBlogSamples.cs │ │ └── UnitOfWorkMechanics.cs │ ├── Github │ │ ├── Documents.cs │ │ ├── GhRepository.cs │ │ ├── GhUser.cs │ │ ├── GitHubExporter.cs │ │ ├── RepositoryHistory.cs │ │ ├── bottles.json │ │ ├── fubucore.json │ │ ├── fubumvc.json │ │ ├── htmltags.json │ │ ├── storyteller.json │ │ └── structuremap.json │ ├── GlobalSuppressions.cs │ ├── Harness │ │ ├── BugIntegrationContext.cs │ │ ├── ConnectionSource.cs │ │ ├── DefaultStoreFixture.cs │ │ ├── DestructiveIntegrationContext.cs │ │ ├── IntegrationContext.cs │ │ ├── OneOffConfigurationsContext.cs │ │ ├── PgVersionTargetedFact.cs │ │ ├── SerializerTypeTargetedFact.cs │ │ ├── SerializerTypeTargetedTheory.cs │ │ ├── SpecificationExtensions.cs │ │ ├── StoreContext.cs │ │ ├── StoreFixture.cs │ │ ├── TestOutputMartenLogger.cs │ │ └── TestsSettings.cs │ ├── Marten.Testing.csproj │ ├── MartenHostEnvironment.cs │ ├── RecordingLogger.cs │ ├── SchemaMigrationExtensions.cs │ ├── StubDocumentSessionListener.cs │ ├── TestSetup.cs │ └── Weird │ │ └── Task.cs ├── Marten.sln ├── Marten │ ├── AdvancedOperations.cs │ ├── BulkInsertMode.cs │ ├── DefaultMartenLogger.cs │ ├── DocumentStore.CompiledQueryCollection.cs │ ├── DocumentStore.EventStore.cs │ ├── DocumentStore.IMartenStorage.cs │ ├── DocumentStore.MultiTenancy.cs │ ├── DocumentStore.cs │ ├── DocumentTracking.cs │ ├── Events │ │ ├── AggregateToExtensions.cs │ │ ├── Aggregation │ │ │ ├── CustomProjection.cs │ │ │ ├── IAggregateGrouper.cs │ │ │ ├── IMartenAggregateProjection.cs │ │ │ ├── IMessageBatch.cs │ │ │ ├── IMessageOutbox.cs │ │ │ ├── NulloMessageOutbox.cs │ │ │ └── SingleStreamProjection.cs │ │ ├── Archiving │ │ │ ├── AllEventsFilter.cs │ │ │ ├── ArchiveStreamFunction.cs │ │ │ ├── ArchiveStreamOperation.cs │ │ │ ├── ArchivedEventExtensions.cs │ │ │ ├── IArchiveFilter.cs │ │ │ ├── IsArchivedColumn.cs │ │ │ ├── IsArchivedFilter.cs │ │ │ ├── IsNotArchivedFilter.cs │ │ │ ├── IsNotSkippedFilter.cs │ │ │ ├── IsSkippedFilter.cs │ │ │ └── MaybeArchivedMethodCallParser.cs │ │ ├── AsyncProjectionTestingExtensions.cs │ │ ├── CodeGeneration │ │ │ ├── CodeGenerationExtensions.cs │ │ │ ├── EventDocumentStorageGenerator.cs │ │ │ └── MartenIgnoreAttribute.cs │ │ ├── Daemon │ │ │ ├── AsyncOptionsExtensions.cs │ │ │ ├── Coordination │ │ │ │ ├── AdvisoryLock.cs │ │ │ │ ├── ExplicitProjectionCoordinator.cs │ │ │ │ ├── IProjectionCoordinator.cs │ │ │ │ ├── IProjectionDistributor.cs │ │ │ │ ├── IProjectionSet.cs │ │ │ │ ├── MultiTenantedProjectionDistributor.cs │ │ │ │ ├── ProjectionCoordinator.cs │ │ │ │ ├── ProjectionSet.cs │ │ │ │ ├── SingleTenantProjectionDistributor.cs │ │ │ │ └── SoloProjectionDistributor.cs │ │ │ ├── HighWater │ │ │ │ ├── GapDetector.cs │ │ │ │ ├── HighWaterDetector.cs │ │ │ │ └── HighWaterStatisticsDetector.cs │ │ │ ├── Internals │ │ │ │ ├── AggregateTypeFilter.cs │ │ │ │ ├── EventLoader.cs │ │ │ │ ├── EventLoaderException.cs │ │ │ │ ├── EventRangeExtensions.cs │ │ │ │ ├── EventTypeFilter.cs │ │ │ │ ├── ProjectionBatch.cs │ │ │ │ ├── ProjectionDocumentSession.cs │ │ │ │ ├── ProjectionUpdateBatch.cs │ │ │ │ └── ResilientEventLoader.cs │ │ │ ├── Progress │ │ │ │ ├── DeleteProjectionProgress.cs │ │ │ │ ├── InsertProjectionProgress.cs │ │ │ │ ├── ProjectionProgressStatement.cs │ │ │ │ ├── ShardStateSelector.cs │ │ │ │ └── UpdateProjectionProgress.cs │ │ │ └── ProjectionDaemon.cs │ │ ├── EventDocumentStorage.cs │ │ ├── EventGraph.Actions.cs │ │ ├── EventGraph.FeatureSchema.cs │ │ ├── EventGraph.GeneratesCode.cs │ │ ├── EventGraph.Masking.cs │ │ ├── EventGraph.Processing.cs │ │ ├── EventGraph.cs │ │ ├── EventMapping.cs │ │ ├── EventQueryMapping.cs │ │ ├── EventSequenceFetcher.cs │ │ ├── EventStatement.cs │ │ ├── EventStore.Append.cs │ │ ├── EventStore.Archiving.cs │ │ ├── EventStore.ConcurrentAppends.cs │ │ ├── EventStore.FetchForWriting.cs │ │ ├── EventStore.StartStream.cs │ │ ├── EventStore.StreamCompacting.cs │ │ ├── EventStore.WriteToAggregate.cs │ │ ├── EventStore.cs │ │ ├── EventStoreStatistics.cs │ │ ├── Fetching │ │ │ ├── AsyncFetchPlanner.cs │ │ │ ├── FetchAsyncPlan.ExpectedVersion.cs │ │ │ ├── FetchAsyncPlan.ForReading.cs │ │ │ ├── FetchAsyncPlan.ForUpdate.cs │ │ │ ├── FetchAsyncPlan.cs │ │ │ ├── FetchForWritingExtensions.cs │ │ │ ├── FetchInlinedPlan.ExpectedVersion.cs │ │ │ ├── FetchInlinedPlan.ForReading.cs │ │ │ ├── FetchInlinedPlan.ForUpdate.cs │ │ │ ├── FetchInlinedPlan.cs │ │ │ ├── FetchLivePlan.ExpectedVersion.cs │ │ │ ├── FetchLivePlan.ForReading.cs │ │ │ ├── FetchLivePlan.ForUpdate.cs │ │ │ ├── FetchLivePlan.cs │ │ │ ├── IFetchPlanner.cs │ │ │ ├── IdentityForwardingAggregator.cs │ │ │ ├── InlineFetchPlanner.cs │ │ │ ├── LiveFetchPlanner.cs │ │ │ └── PreCannedQueryHandler.cs │ │ ├── IEventAppender.cs │ │ ├── IEventOperations.cs │ │ ├── IEventStorage.cs │ │ ├── IEventStoreOperations.cs │ │ ├── IEventStoreOptions.cs │ │ ├── IEventStream.cs │ │ ├── IQueryEventStore.cs │ │ ├── IReadOnlyEventStoreOptions.cs │ │ ├── IsArchivedMember.cs │ │ ├── LinqExtensions.cs │ │ ├── MartenCommand.cs │ │ ├── MetadataConfig.cs │ │ ├── Operations │ │ │ ├── AppendEventOperationBase.cs │ │ │ ├── EstablishTombstoneStream.cs │ │ │ ├── IncrementStreamVersionById.cs │ │ │ ├── IncrementStreamVersionByKey.cs │ │ │ ├── InsertStreamBase.cs │ │ │ ├── QuickAppendEventsOperationBase.cs │ │ │ └── UpdateStreamVersion.cs │ │ ├── Projections │ │ │ ├── EventProjection.cs │ │ │ ├── Examples.cs │ │ │ ├── Flattened │ │ │ │ ├── ColumnMapType.cs │ │ │ │ ├── DecrementMap.cs │ │ │ │ ├── EventDeleter.cs │ │ │ │ ├── EventForwarder.cs │ │ │ │ ├── FlatTableProjection.Validation.cs │ │ │ │ ├── FlatTableProjection.cs │ │ │ │ ├── FlatTableUpsertFunction.cs │ │ │ │ ├── IColumnMap.cs │ │ │ │ ├── IEventHandler.cs │ │ │ │ ├── IParameterSetter.cs │ │ │ │ ├── IncrementMap.cs │ │ │ │ ├── KebabConverter.cs │ │ │ │ ├── MemberMap.cs │ │ │ │ ├── ParameterSetter.cs │ │ │ │ ├── RelayParameterSetter.cs │ │ │ │ ├── SchemaNameSource.cs │ │ │ │ ├── SetValueMap.cs │ │ │ │ ├── SqlOperation.cs │ │ │ │ └── StatementMap.cs │ │ │ ├── IMartenRegistrable.cs │ │ │ ├── IProjection.cs │ │ │ ├── IProjectionSchemaSource.cs │ │ │ ├── MultiStreamProjection.cs │ │ │ ├── ProjectionDocumentPolicy.cs │ │ │ ├── ProjectionLifecycle.cs │ │ │ └── ProjectionOptions.cs │ │ ├── Protected │ │ │ ├── EventDataMasking.cs │ │ │ ├── OverwriteEventOperation.cs │ │ │ └── ReplaceEventOperation.cs │ │ ├── QueryEventStore.cs │ │ ├── Querying │ │ │ ├── SingleEventQueryHandler.cs │ │ │ └── StreamStateSelector.cs │ │ ├── QuickEventAppender.cs │ │ ├── RichEventAppender.cs │ │ ├── Schema │ │ │ ├── EventJsonDataColumn.cs │ │ │ ├── EventMetadataCollection.cs │ │ │ ├── EventProgressionSkippingTable.cs │ │ │ ├── EventProgressionTable.cs │ │ │ ├── EventTableColumn.cs │ │ │ ├── EventTypeColumn.cs │ │ │ ├── EventsTable.cs │ │ │ ├── IEventTableColumn.cs │ │ │ ├── QuickAppendEventFunction.cs │ │ │ ├── SequenceColumn.cs │ │ │ ├── StreamIdColumn.cs │ │ │ ├── StreamsTable.cs │ │ │ └── VersionColumn.cs │ │ ├── StreamState.cs │ │ ├── StubEventStream.cs │ │ └── TestSupport │ │ │ ├── ProjectionScenario.Assertions.cs │ │ │ ├── ProjectionScenario.EventOperations.cs │ │ │ ├── ProjectionScenario.cs │ │ │ ├── ProjectionScenarioException.cs │ │ │ ├── ScenarioAction.cs │ │ │ ├── ScenarioAssertion.cs │ │ │ └── ScenarioStep.cs │ ├── Exceptions │ │ ├── AmbiguousDocumentTypeAliasesException.cs │ │ ├── ApplyEventException.cs │ │ ├── BadLinqExpressionException.cs │ │ ├── ConcurrentUpdateException.cs │ │ ├── DefaultTenantUsageDisabledException.cs │ │ ├── DocumentAlreadyExistsException.cs │ │ ├── DocumentIdTypeMismatchException.cs │ │ ├── EventDeserializationFailureException.cs │ │ ├── ExistingStreamIdCollisionException.cs │ │ ├── HiloSequenceAdvanceToNextHiAttemptsExceededException.cs │ │ ├── InvalidCompiledQueryException.cs │ │ ├── InvalidConnectionStringException.cs │ │ ├── InvalidDocumentException.cs │ │ ├── InvalidStreamOperationException.cs │ │ ├── InvalidTenantForDatabaseException.cs │ │ ├── InvalidUtcDateTimeUsageException.cs │ │ ├── MartenCommandException.cs │ │ ├── MartenCommandNotSupportedException.cs │ │ ├── MartenException.cs │ │ ├── MartenExceptionTransformer.cs │ │ ├── MartenNotSupportedException.cs │ │ ├── MartenSchemaException.cs │ │ ├── NonExistentDocumentException.cs │ │ ├── NonExistentStreamException.cs │ │ ├── RollbackException.cs │ │ ├── StreamLockedException.cs │ │ ├── StreamTypeMissingException.cs │ │ └── UnknownEventTypeException.cs │ ├── FullTextIndexAttribute.cs │ ├── HostExtensions.cs │ ├── IAdvancedSql.cs │ ├── IDiagnostics.cs │ ├── IDocumentOperations.cs │ ├── IDocumentPolicy.cs │ ├── IDocumentSchemaResolver.cs │ ├── IDocumentSession.cs │ ├── IDocumentSessionListener.cs │ ├── IDocumentStore.cs │ ├── IJsonLoader.cs │ ├── IMartenLogger.cs │ ├── IMartenStorage.cs │ ├── IQueryPlan.cs │ ├── IQuerySession.cs │ ├── IReadOnlyStoreOptions.cs │ ├── ISerializer.cs │ ├── ISessionFactory.cs │ ├── ITenantOperations.cs │ ├── ITenantQueryOperations.cs │ ├── Internal │ │ ├── CodeGeneration │ │ │ ├── BulkLoader.cs │ │ │ ├── BulkLoaderBuilder.cs │ │ │ ├── DocumentFunctionOperationBuilder.cs │ │ │ ├── DocumentOperations.cs │ │ │ ├── DocumentProviderBuilder.cs │ │ │ ├── DocumentSelectorWithDirtyChecking.cs │ │ │ ├── DocumentSelectorWithIdentityMap.cs │ │ │ ├── DocumentSelectorWithOnlySerializer.cs │ │ │ ├── DocumentSelectorWithVersions.cs │ │ │ ├── DocumentStorageBuilder.cs │ │ │ ├── FrameCollectionExtensions.cs │ │ │ ├── IDocumentSelector.cs │ │ │ ├── SelectorBuilder.cs │ │ │ ├── StorageStyle.cs │ │ │ ├── StringExtensions.cs │ │ │ └── SubClassBulkLoader.cs │ │ ├── CompiledQueries │ │ │ ├── ClonedCompiledQuery.cs │ │ │ ├── CommandPlan.cs │ │ │ ├── CompiledQueryCodeFile.cs │ │ │ ├── CompiledQueryPlan.cs │ │ │ ├── CompiledQuerySource.cs │ │ │ ├── CompiledQuerySourceBuilder.cs │ │ │ ├── CompiledSourceType.cs │ │ │ ├── ComplexCompiledQuery.cs │ │ │ ├── EnumParameterFinder.cs │ │ │ ├── FieldQueryMember.cs │ │ │ ├── ICompiledQueryAwareFilter.cs │ │ │ ├── ICompiledQuerySource.cs │ │ │ ├── IParameterFinder.cs │ │ │ ├── IQueryMember.cs │ │ │ ├── ParameterUsage.cs │ │ │ ├── PropertyQueryMember.cs │ │ │ ├── QueryCompiler.cs │ │ │ ├── QueryMember.cs │ │ │ ├── SimpleParameterFinder.cs │ │ │ ├── StatelessCompiledQuery.cs │ │ │ └── UniqueValueSource.cs │ │ ├── DirtyTracking │ │ │ ├── ChangeTracker.cs │ │ │ └── IChangeTracker.cs │ │ ├── IMartenSession.cs │ │ ├── IProviderGraph.cs │ │ ├── IUpdateBatch.cs │ │ ├── OpenTelemetry │ │ │ └── MartenTracing.cs │ │ ├── Operations │ │ │ ├── ExecuteSqlStorageOperation.cs │ │ │ ├── IDocumentStorageOperation.cs │ │ │ ├── IStorageOperation.cs │ │ │ ├── OperationRole.cs │ │ │ ├── StorageOperation.cs │ │ │ └── TruncateTable.cs │ │ ├── ProviderGraph.cs │ │ ├── SecondaryStoreConfig.cs │ │ ├── Sessions │ │ │ ├── AmbientTransactionLifetime.cs │ │ │ ├── AutoClosingLifetime.cs │ │ │ ├── DirtyCheckingDocumentSession.cs │ │ │ ├── DocumentSessionBase.Deletes.cs │ │ │ ├── DocumentSessionBase.HardDeletes.cs │ │ │ ├── DocumentSessionBase.ProjectionStorage.cs │ │ │ ├── DocumentSessionBase.SaveChanges.cs │ │ │ ├── DocumentSessionBase.cs │ │ │ ├── EventTracingConnectionLifetime.cs │ │ │ ├── ExternalTransaction.cs │ │ │ ├── IConnectionLifetime.cs │ │ │ ├── IdentityMapDocumentSession.cs │ │ │ ├── LightweightSession.cs │ │ │ ├── NestedTenantQuerySession.cs │ │ │ ├── NestedTenantSession.cs │ │ │ ├── OperationPage.cs │ │ │ ├── QuerySession.AdvancedSql.cs │ │ │ ├── QuerySession.ChangeTracking.cs │ │ │ ├── QuerySession.Disposal.cs │ │ │ ├── QuerySession.Execution.cs │ │ │ ├── QuerySession.FullTextSearch.cs │ │ │ ├── QuerySession.Json.cs │ │ │ ├── QuerySession.Load.cs │ │ │ ├── QuerySession.Metadata.cs │ │ │ ├── QuerySession.Querying.cs │ │ │ ├── QuerySession.Storage.cs │ │ │ ├── QuerySession.Tenancy.cs │ │ │ ├── QuerySession.cs │ │ │ ├── ReadOnlyTransactionalConnection.cs │ │ │ └── TransactionalConnection.cs │ │ ├── Storage │ │ │ ├── DataAndIdSelectClause.cs │ │ │ ├── DirtyCheckedDocumentStorage.cs │ │ │ ├── DocumentStorage.cs │ │ │ ├── IDocumentStorage.cs │ │ │ ├── IdentityMapDocumentStorage.cs │ │ │ ├── LightweightDocumentStorage.cs │ │ │ ├── QueryOnlyDocumentStorage.cs │ │ │ └── SubClassDocumentStorage.cs │ │ ├── TenantDataCleaner.cs │ │ ├── UnitOfWork.cs │ │ ├── UpdateBatch.cs │ │ ├── ValueTypeElementMember.cs │ │ ├── ValueTypeIdentifiedDocumentStorage.cs │ │ ├── VersionTracker.cs │ │ └── WalkReferencedAssemblies.cs │ ├── JsonLoader.cs │ ├── Linq │ │ ├── CollectionUsage.Compilation.cs │ │ ├── CollectionUsage.Includes.cs │ │ ├── CollectionUsage.Parsing.cs │ │ ├── CollectionUsage.cs │ │ ├── ConfigureExplainExpressions.cs │ │ ├── CreatedAt │ │ │ ├── CreatedAtExtensions.cs │ │ │ ├── CreatedBeforeParser.cs │ │ │ └── CreatedSinceParser.cs │ │ ├── FetchType.cs │ │ ├── ICompiledQuery.cs │ │ ├── IConfigureExplainExpressions.cs │ │ ├── ILinqQuery.cs │ │ ├── IMartenQueryable.cs │ │ ├── Includes │ │ │ ├── DictionaryIncludePlan.cs │ │ │ ├── IIncludePlan.cs │ │ │ ├── IIncludeReader.cs │ │ │ ├── IMartenQueryableIncludeBuilder.cs │ │ │ ├── IdInIncludedDocumentIdentifierFilter.cs │ │ │ ├── Include.cs │ │ │ ├── IncludePlan.cs │ │ │ ├── IncludeQueryHandler.cs │ │ │ ├── IncludeReader.cs │ │ │ ├── ListIncludePlan.cs │ │ │ ├── MartenQueryableIncludeBuilder.cs │ │ │ ├── PassthroughSelectStatement.cs │ │ │ └── TemporaryTableStatement.cs │ │ ├── LastModified │ │ │ ├── LastModifiedExtensions.cs │ │ │ ├── ModifiedBeforeParser.cs │ │ │ └── ModifiedSinceParser.cs │ │ ├── MartenLinqQueryProvider.cs │ │ ├── MartenLinqQueryable.cs │ │ ├── MatchesSql │ │ │ ├── MatchesSqlExtensions.cs │ │ │ └── MatchesSqlParser.cs │ │ ├── Members │ │ │ ├── BooleanMember.cs │ │ │ ├── ChildCollectionCount.cs │ │ │ ├── ChildCollectionJsonPathCountFilter.cs │ │ │ ├── ChildCollectionMember.cs │ │ │ ├── ChildCollectionWhereClause.cs │ │ │ ├── ChildDocument.cs │ │ │ ├── CollectionLengthMember.cs │ │ │ ├── DateTimeMember.cs │ │ │ ├── DateTimeOffsetMember.cs │ │ │ ├── Dictionaries │ │ │ │ ├── DictionaryContainsKey.cs │ │ │ │ ├── DictionaryContainsKeyFilter.cs │ │ │ │ ├── DictionaryCountMember.cs │ │ │ │ ├── DictionaryIsEmpty.cs │ │ │ │ ├── DictionaryIsNotEmpty.cs │ │ │ │ ├── DictionaryItemMember.cs │ │ │ │ ├── DictionaryKeysMember.cs │ │ │ │ ├── DictionaryMember.cs │ │ │ │ ├── DictionaryValuesContainFilter.cs │ │ │ │ ├── DictionaryValuesMember.cs │ │ │ │ ├── IDictionaryMember.cs │ │ │ │ └── KeyValuePairMemberCollection.cs │ │ │ ├── DocumentQueryableMemberCollection.cs │ │ │ ├── DuplicatedArrayField.cs │ │ │ ├── DuplicatedField.cs │ │ │ ├── EnumAsIntegerMember.cs │ │ │ ├── EnumAsStringMember.cs │ │ │ ├── FSharpOptionValueTypeMember.cs │ │ │ ├── HasValueMember.cs │ │ │ ├── IBooleanMember.cs │ │ │ ├── ICollectionMember.cs │ │ │ ├── IComparableMember.cs │ │ │ ├── IHasChildrenMembers.cs │ │ │ ├── IMemberSource.cs │ │ │ ├── IQueryableMember.cs │ │ │ ├── IQueryableMemberCollection.cs │ │ │ ├── IdMember.cs │ │ │ ├── ModuloComparison.cs │ │ │ ├── NotMember.cs │ │ │ ├── QueryableMember.cs │ │ │ ├── ScalarSelectManyStatement.cs │ │ │ ├── ScalarSelectManyStringStatement.cs │ │ │ ├── SimpleCastMember.cs │ │ │ ├── StringMember.cs │ │ │ ├── StringValueTypeMember.cs │ │ │ ├── StrongTypedIdMember.cs │ │ │ ├── ValueCollections │ │ │ │ ├── ArrayIndexMember.cs │ │ │ │ ├── ElementComparisonFilter.cs │ │ │ │ ├── ElementMember.cs │ │ │ │ ├── IValueCollectionMember.cs │ │ │ │ ├── SelectManyValueCollection.cs │ │ │ │ ├── SimpleElementMember.cs │ │ │ │ └── ValueCollectionMember.cs │ │ │ ├── ValueTypeMember.cs │ │ │ └── WholeDataMember.cs │ │ ├── OrderingDirection.cs │ │ ├── Parsing │ │ │ ├── CompareToComparable.cs │ │ │ ├── IMethodCallParser.cs │ │ │ ├── JsonPathCreator.cs │ │ │ ├── LinqInternalExtensions.cs │ │ │ ├── LinqQueryParser.Handlers.cs │ │ │ ├── LinqQueryParser.Preview.cs │ │ │ ├── LinqQueryParser.Statements.cs │ │ │ ├── LinqQueryParser.cs │ │ │ ├── MemberFinder.cs │ │ │ ├── Methods │ │ │ │ ├── AllMethodParser.cs │ │ │ │ ├── AnySubQueryParser.cs │ │ │ │ ├── AnyTenant.cs │ │ │ │ ├── EnumerableContains.cs │ │ │ │ ├── FullText │ │ │ │ │ ├── FullTextSearchMethodCallParser.cs │ │ │ │ │ ├── NgramSearch.cs │ │ │ │ │ ├── PhraseSearch.cs │ │ │ │ │ ├── PlainTextSearch.cs │ │ │ │ │ ├── Search.cs │ │ │ │ │ └── WebStyleSearch.cs │ │ │ │ ├── IsEmpty.cs │ │ │ │ ├── IsNotOneOf.cs │ │ │ │ ├── IsOneOf.cs │ │ │ │ ├── IsSubsetOf.cs │ │ │ │ ├── IsSupersetOf.cs │ │ │ │ ├── SimpleEqualsParser.cs │ │ │ │ ├── SimpleNotEqualsParser.cs │ │ │ │ ├── Strings │ │ │ │ │ ├── EqualsIgnoreCaseParser.cs │ │ │ │ │ ├── StringComparisonParser.cs │ │ │ │ │ ├── StringContains.cs │ │ │ │ │ ├── StringEndsWith.cs │ │ │ │ │ ├── StringEquals.cs │ │ │ │ │ ├── StringIsNullOrEmpty.cs │ │ │ │ │ ├── StringIsNullOrWhiteSpace.cs │ │ │ │ │ └── StringStartsWith.cs │ │ │ │ └── TenantIsOneOf.cs │ │ │ ├── Operators │ │ │ │ ├── AnyOperator.cs │ │ │ │ ├── CasingRule.cs │ │ │ │ ├── DistinctOperator.cs │ │ │ │ ├── IncludeOperator.cs │ │ │ │ ├── IncludePlanOperator.cs │ │ │ │ ├── LastOperator.cs │ │ │ │ ├── LinqOperator.cs │ │ │ │ ├── OperatorLibrary.cs │ │ │ │ ├── OrderBySqlOperator.cs │ │ │ │ ├── Ordering.cs │ │ │ │ ├── OrderingOperator.cs │ │ │ │ ├── SelectManyOperator.cs │ │ │ │ ├── SelectOperator.cs │ │ │ │ ├── SingleValueOperator.cs │ │ │ │ ├── SkipOperator.cs │ │ │ │ ├── TakeOperator.cs │ │ │ │ └── WhereOperator.cs │ │ │ ├── SelectParser.cs │ │ │ ├── SelectorVisitor.cs │ │ │ ├── SimpleExpression.cs │ │ │ ├── SingleValueMode.cs │ │ │ ├── StringCompareComparable.cs │ │ │ └── WhereClauseParser.cs │ │ ├── QueryHandlers │ │ │ ├── AdvancedSqlQueryHandler.cs │ │ │ ├── IQueryHandler.cs │ │ │ ├── LinqConstants.cs │ │ │ ├── ListQueryHandler.cs │ │ │ ├── ListWithStatsQueryHandler.cs │ │ │ ├── LoadByIdArrayHandler.cs │ │ │ ├── LoadByIdHandler.cs │ │ │ ├── OneResultHandler.cs │ │ │ └── UserSuppliedQueryHandler.cs │ │ ├── QueryPlan.cs │ │ ├── QueryStatistics.cs │ │ ├── Selectors │ │ │ ├── CastingSelector.cs │ │ │ ├── ISelector.cs │ │ │ ├── NullableSelector.cs │ │ │ ├── SerializationSelector.cs │ │ │ └── TimeSpanSelector.cs │ │ ├── SoftDeletes │ │ │ ├── DeletedBeforeParser.cs │ │ │ ├── DeletedSinceParser.cs │ │ │ ├── IsDeletedParser.cs │ │ │ ├── IsSoftDeletedMember.cs │ │ │ ├── MaybeDeletedParser.cs │ │ │ └── SoftDeletedExtensions.cs │ │ ├── SqlGeneration │ │ │ ├── AnySelectClause.cs │ │ │ ├── CountClause.cs │ │ │ ├── DataSelectClause.cs │ │ │ ├── Deletion.cs │ │ │ ├── DistinctSelectionStatement.cs │ │ │ ├── ExplodeCollectionStatement.cs │ │ │ ├── FilterStatement.cs │ │ │ ├── Filters │ │ │ │ ├── AllValuesAreNullFilter.cs │ │ │ │ ├── AllValuesEqualFilter.cs │ │ │ │ ├── BooleanFieldIsFalse.cs │ │ │ │ ├── BooleanFieldIsTrue.cs │ │ │ │ ├── ByIdFilter.cs │ │ │ │ ├── CollectionIsEmpty.cs │ │ │ │ ├── CollectionIsNotEmpty.cs │ │ │ │ ├── ContainmentWhereFilter.cs │ │ │ │ ├── CurrentTenantFilter.cs │ │ │ │ ├── DeepCollectionIsNotEmpty.cs │ │ │ │ ├── EqualsFilter.cs │ │ │ │ ├── ExcludeSoftDeletedFilter.cs │ │ │ │ ├── FullTextWhereFragment.cs │ │ │ │ ├── ICollectionAware.cs │ │ │ │ ├── ITenantFilter.cs │ │ │ │ ├── IsNotNullFilter.cs │ │ │ │ ├── IsNullFilter.cs │ │ │ │ ├── MemberComparisonFilter.cs │ │ │ │ ├── SpecificTenantFilter.cs │ │ │ │ ├── SubQueryFilter.cs │ │ │ │ ├── TenantIsOneOfFilter.cs │ │ │ │ └── WriteSerializedJsonParameterFrame.cs │ │ │ ├── FromFragment.cs │ │ │ ├── HardDelete.cs │ │ │ ├── IOperationFragment.cs │ │ │ ├── IScalarSelectClause.cs │ │ │ ├── ISelectClause.cs │ │ │ ├── Literal.cs │ │ │ ├── NewScalarSelectClause.cs │ │ │ ├── NewScalarStringSelectClause.cs │ │ │ ├── OrderByFragment.cs │ │ │ ├── ScalarSelectClause.cs │ │ │ ├── ScalarStringSelectClause.cs │ │ │ ├── SelectDataSelectClause.cs │ │ │ ├── SelectorStatement.cs │ │ │ ├── SoftDelete.cs │ │ │ ├── Statement.WhereParsing.cs │ │ │ ├── Statement.cs │ │ │ ├── StatementMode.cs │ │ │ ├── StatementOperation.cs │ │ │ ├── StatsSelectClause.cs │ │ │ ├── UnSoftDelete.cs │ │ │ ├── ValueTypeSelectClause.cs │ │ │ └── WhereFragmentExtensions.cs │ │ └── notes.md │ ├── LinqExtensions.cs │ ├── LinqParsing.cs │ ├── Marten.csproj │ ├── MartenRegistry.cs │ ├── MartenServiceCollectionExtensions.cs │ ├── MartenSystemPart.cs │ ├── Metadata │ │ ├── IRevisioned.cs │ │ ├── ISoftDeleted.cs │ │ ├── ITenanted.cs │ │ ├── ITracked.cs │ │ ├── IVersioned.cs │ │ ├── SoftDeletedPolicy.cs │ │ ├── TenancyPolicy.cs │ │ ├── TrackedPolicy.cs │ │ └── VersionedPolicy.cs │ ├── NulloLogger.cs │ ├── NulloMartenLogger.cs │ ├── Pagination │ │ ├── IPagedList.cs │ │ ├── PagedList.cs │ │ └── PagedListQueryableExtensions.cs │ ├── PartitioningExpression.cs │ ├── Patching │ │ ├── IPatchExpression.cs │ │ ├── PatchExpression.cs │ │ ├── PatchOperation.cs │ │ ├── PatchingExtensions.cs │ │ └── RemoveAction.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QuerySessionExtensions.cs │ ├── QueryableExtensions.cs │ ├── Schema │ │ ├── Arguments │ │ │ ├── CurrentVersionArgument.cs │ │ │ ├── DocJsonBodyArgument.cs │ │ │ ├── DocTypeArgument.cs │ │ │ ├── DotNetTypeArgument.cs │ │ │ ├── RevisionArgument.cs │ │ │ ├── TenantIdArgument.cs │ │ │ ├── UpsertArgument.cs │ │ │ └── VersionArgument.cs │ │ ├── BulkLoading │ │ │ └── IBulkLoader.cs │ │ ├── ColumnValue.cs │ │ ├── ComputedIndex.cs │ │ ├── DatabaseGenerator.cs │ │ ├── DatabaseSchemaNameAttribute.cs │ │ ├── DdlTemplateAttribute.cs │ │ ├── DeleteStyle.cs │ │ ├── DoNotPartitionAttribute.cs │ │ ├── DocumentAliasAttribute.cs │ │ ├── DocumentForeignKey.cs │ │ ├── DocumentIndex.cs │ │ ├── DocumentMapping.cs │ │ ├── DocumentMetadataCollection.cs │ │ ├── DocumentSchema.cs │ │ ├── DuplicateFieldAttribute.cs │ │ ├── ForeignKeyAttribute.cs │ │ ├── ForeignKeyConstraint.cs │ │ ├── GinIndexedAttribute.cs │ │ ├── HiLoSequenceAttribute.cs │ │ ├── IDatabaseCreationExpressions.cs │ │ ├── IDocumentCleaner.cs │ │ ├── IDocumentMapping.cs │ │ ├── IInitialData.cs │ │ ├── ITenantDatabaseCreationExpressions.cs │ │ ├── Identity │ │ │ ├── CombGuidIdGeneration.cs │ │ │ ├── FSharpDiscriminatedUnionIdGeneration.cs │ │ │ ├── GuidIdGeneration.cs │ │ │ ├── IIdGeneration.cs │ │ │ ├── NoOpIdGeneration.cs │ │ │ ├── Sequences │ │ │ │ ├── HiLoSequence.cs │ │ │ │ ├── HiloIdGeneration.cs │ │ │ │ ├── HiloSettings.cs │ │ │ │ ├── ISequence.cs │ │ │ │ ├── ISequences.cs │ │ │ │ ├── IdentityKeyGeneration.cs │ │ │ │ └── SequenceFactory.cs │ │ │ ├── StringIdGeneration.cs │ │ │ └── ValueTypeIdGeneration.cs │ │ ├── IdentityAttribute.cs │ │ ├── IndexedCreatedAtAttribute.cs │ │ ├── IndexedLastModifiedAttribute.cs │ │ ├── IndexedTenantIdAttribute.cs │ │ ├── Indexing │ │ │ ├── FullText │ │ │ │ └── FullTextIndexDefinitionFactory.cs │ │ │ └── Unique │ │ │ │ └── TenancyScope.cs │ │ ├── InsertExceptionTransform.cs │ │ ├── MartenAttribute.cs │ │ ├── MartenDocumentAttribute.cs │ │ ├── MartenEventAttribute.cs │ │ ├── MartenManagedTenantListPartitions.cs │ │ ├── MetadataAttributes.cs │ │ ├── MultiTenantedAttribute.cs │ │ ├── NgramIndex.cs │ │ ├── PropertySearching.cs │ │ ├── PropertySearchingAttribute.cs │ │ ├── SQL │ │ │ ├── mt_get_next_hi.sql │ │ │ ├── mt_grams_array.sql │ │ │ ├── mt_grams_query.sql │ │ │ ├── mt_grams_vector.sql │ │ │ ├── mt_immutable_date.sql │ │ │ ├── mt_immutable_time.sql │ │ │ ├── mt_immutable_timestamp.sql │ │ │ ├── mt_immutable_timestamptz.sql │ │ │ ├── mt_jsonb_append.sql │ │ │ ├── mt_jsonb_copy.sql │ │ │ ├── mt_jsonb_duplicate.sql │ │ │ ├── mt_jsonb_fix_null_parent.sql │ │ │ ├── mt_jsonb_increment.sql │ │ │ ├── mt_jsonb_insert.sql │ │ │ ├── mt_jsonb_move.sql │ │ │ ├── mt_jsonb_patch.sql │ │ │ ├── mt_jsonb_path_to_array.sql │ │ │ ├── mt_jsonb_remove.sql │ │ │ ├── mt_mark_event_progression.sql │ │ │ ├── mt_mark_progression_with_skip.sql │ │ │ └── mt_safe_unaccent.sql │ │ ├── SchemaBuilder.cs │ │ ├── SchemaConstants.cs │ │ ├── SchemaObjects.sql │ │ ├── SingleTenantedAttribute.cs │ │ ├── SoftDeletedAttribute.cs │ │ ├── StructuralTypedAttribute.cs │ │ ├── SubClassMapping.cs │ │ ├── SubClasses.cs │ │ ├── UniqueIndexAttribute.cs │ │ ├── UniqueIndexType.cs │ │ ├── UseOptimisticConcurrencyAttribute.cs │ │ └── VersionAttribute.cs │ ├── Services │ │ ├── BatchQuerying │ │ │ ├── BatchQueryItem.cs │ │ │ ├── BatchedOrderedQueryable.cs │ │ │ ├── BatchedQuery.Events.cs │ │ │ ├── BatchedQuery.cs │ │ │ ├── BatchedQueryable.cs │ │ │ ├── BatchedQueryableIncludeBuilder.cs │ │ │ ├── IBatchLoadByKeys.cs │ │ │ ├── IBatchQueryItem.cs │ │ │ ├── IBatchedFetcher.cs │ │ │ ├── IBatchedOrderedQueryable.cs │ │ │ ├── IBatchedQuery.cs │ │ │ ├── IBatchedQueryable.cs │ │ │ ├── IBatchedQueryableIncludeBuilder.cs │ │ │ └── TransformedBatchQueryable.cs │ │ ├── CommandRunnerExtensions.cs │ │ ├── CommandRunnerMode.cs │ │ ├── Diagnostics.cs │ │ ├── EventStreamUnexpectedMaxEventIdExceptionTransform.cs │ │ ├── IChangeSet.cs │ │ ├── IDeletion.cs │ │ ├── ISessionWorkTracker.cs │ │ ├── ISingleQueryHandler.cs │ │ ├── ISingleQueryRunner.cs │ │ ├── IUnitOfWork.cs │ │ ├── Json │ │ │ ├── JsonNetCollectionToArrayJsonConverter.cs │ │ │ ├── JsonNetContractResolver.cs │ │ │ ├── JsonNetObjectContractProvider.cs │ │ │ ├── SerializerFactory.cs │ │ │ ├── SerializerOptions.cs │ │ │ ├── SerializerType.cs │ │ │ ├── SystemObjectNewtonsoftCompatibleConverter.cs │ │ │ ├── SystemTextJsonBigIntegerConverter.cs │ │ │ ├── SystemTextJsonExtensions.cs │ │ │ └── Transformations │ │ │ │ ├── EventUpcaster.cs │ │ │ │ ├── JsonNet │ │ │ │ ├── EventUpcaster.cs │ │ │ │ └── JsonTransformations.cs │ │ │ │ ├── JsonTransformation.cs │ │ │ │ └── SystemTextJson │ │ │ │ ├── EventUpcaster.cs │ │ │ │ └── JsonTransformations.cs │ │ ├── JsonArrayPool.cs │ │ ├── JsonNetSerializer.cs │ │ ├── JsonStreamingExtensions.cs │ │ ├── MartenActivator.cs │ │ ├── NoDataReturnedCall.cs │ │ ├── OpenTelemetryOptions.cs │ │ ├── SessionOptions.cs │ │ ├── SystemTextJsonSerializer.cs │ │ └── VersionTracker.cs │ ├── Sessions │ │ ├── DefaultSessionFactory.cs │ │ ├── DirtyTrackedSessionFactory.cs │ │ ├── IdentitySessionFactory.cs │ │ ├── LightweightSessionFactory.cs │ │ └── TenantedSessionFactory.cs │ ├── Storage │ │ ├── BulkInsertion.cs │ │ ├── CompositeDocumentCleaner.cs │ │ ├── DataColumn.cs │ │ ├── DefaultTenancy.cs │ │ ├── DocumentTable.cs │ │ ├── DuplicatedFieldColumn.cs │ │ ├── IMartenDatabase.cs │ │ ├── ISelectableColumn.cs │ │ ├── ITenancy.cs │ │ ├── IdColumn.cs │ │ ├── InsertFunction.cs │ │ ├── MartenDatabase.DocumentCleaner.cs │ │ ├── MartenDatabase.EventStorage.cs │ │ ├── MartenDatabase.Execution.cs │ │ ├── MartenDatabase.cs │ │ ├── MasterTableTenancy.cs │ │ ├── MasterTableTenancyOptions.cs │ │ ├── Metadata │ │ │ ├── CausationIdColumn.cs │ │ │ ├── CorrelationIdColumn.cs │ │ │ ├── CreatedAtColumn.cs │ │ │ ├── DeletedAtColumn.cs │ │ │ ├── DocumentMetadata.cs │ │ │ ├── DocumentTypeColumn.cs │ │ │ ├── DotNetTypeColumn.cs │ │ │ ├── EntityMetadataQueryHandler.cs │ │ │ ├── HeadersColumn.cs │ │ │ ├── LastModifiedByColumn.cs │ │ │ ├── LastModifiedColumn.cs │ │ │ ├── MetadataColumn.cs │ │ │ ├── RevisionColumn.cs │ │ │ ├── SoftDeletedColumn.cs │ │ │ ├── TenantIdColumn.cs │ │ │ ├── UserNameColumn.cs │ │ │ └── VersionColumn.cs │ │ ├── OriginWriter.cs │ │ ├── OverwriteFunction.cs │ │ ├── SingleServerMultiTenancy.cs │ │ ├── StandinDatabase.cs │ │ ├── StaticMultiTenancy.cs │ │ ├── StorageFeatures.cs │ │ ├── SystemFunction.cs │ │ ├── SystemFunctions.cs │ │ ├── Tenancy.cs │ │ ├── TenancyStyle.cs │ │ ├── Tenant2.cs │ │ ├── UpdateFunction.cs │ │ └── UpsertFunction.cs │ ├── StoreOptions.GeneratesCode.cs │ ├── StoreOptions.Identity.cs │ ├── StoreOptions.MemberFactory.cs │ ├── StoreOptions.Registration.cs │ ├── StoreOptions.cs │ ├── Subscriptions │ │ ├── ISubscription.cs │ │ ├── SubscriptionBase.cs │ │ └── SubscriptionWrapper.cs │ └── Util │ │ ├── CommandExtensions.cs │ │ ├── GenericsExtensions.cs │ │ ├── ReflectionExtensions.cs │ │ ├── ResilientPipelineBuilderExtensions.cs │ │ ├── SOHSkippingStream.cs │ │ ├── SharedBuffer.cs │ │ ├── StreamExtensions.cs │ │ └── StringExtensions.cs ├── MartenBenchmarks │ ├── BenchAgainst │ │ ├── BenchModel.cs │ │ ├── BenchModel2.cs │ │ ├── BenchModel3.cs │ │ └── BenchModel4.cs │ ├── BenchmarkStore.cs │ ├── BulkLoading.cs │ ├── DocumentActions.cs │ ├── EventActions.cs │ ├── Infrastructure │ │ └── StringToTextReaderExtensions.cs │ ├── LinqActions.cs │ ├── MartenBenchmarks.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── MemoryUsageChecker │ ├── MemoryUsageChecker.csproj │ └── Program.cs ├── MultiDatabaseCommandLineRunner │ ├── MultiDatabaseCommandLineRunner.csproj │ └── Program.cs ├── MultiHostTests │ ├── 00_init.sql │ ├── MultiHostConfigurationContext.cs │ ├── MultiHostTests.cs │ ├── MultiHostTests.csproj │ └── docker-compose.yaml ├── MultiTenancyTests │ ├── AssemblyInfo.cs │ ├── DocumentStore_IMartenStorage_implementation.cs │ ├── GlobalUsings.cs │ ├── MultiTenancyTests.csproj │ ├── SingleServerMultiTenancyTests.cs │ ├── marten_managed_tenant_id_partitioning.cs │ ├── using_database_per_tenant.cs │ ├── using_master_table_multi_tenancy.cs │ ├── using_master_table_multi_tenancy_with_datasource.cs │ ├── using_per_database_multitenancy.cs │ └── using_static_database_multitenancy.cs ├── NuGet.Config ├── PatchingTests │ ├── Patching │ │ ├── Bug_1173_patch_typenamehandling_bug.cs │ │ ├── Bug_2170_patch_with_sub_collection_query.cs │ │ ├── Bug_2460_parallel_patching.cs │ │ ├── Bug_3261_patch_plus_revisions.cs │ │ ├── Bug_593_patch_doc_function_should_be_built_in_designated_schema.cs │ │ ├── PatchExpressionTests.cs │ │ ├── multi_tenancy.cs │ │ ├── patching_api.cs │ │ └── patching_with_altered_metadata_columns.cs │ └── PatchingTests.csproj ├── StressTests │ ├── Bugs │ │ ├── Bug_3113_do_not_reorder_sql_operations.cs │ │ └── Bug_616_not_possible_to_use_Serializable_transactions.cs │ ├── StressTests.csproj │ ├── ability_to_use_an_existing_connection_and_transaction.cs │ ├── create_database_Tests.cs │ ├── reset_all_data_usage_ihost.cs │ └── using_multiple_document_stores_in_same_host.cs ├── TestSetup.cs ├── TestingSupport │ └── TestingSupport.csproj ├── ValueTypeTests │ ├── AssemblyInfo.cs │ ├── Bugs │ │ └── querying_by_value_types.cs │ ├── Internal │ │ └── Generated │ │ │ └── DocumentStorage │ │ │ ├── ClassProvider1873568694.cs │ │ │ ├── GradeProvider907442297.cs │ │ │ ├── Invoice2Provider479877131.cs │ │ │ ├── Invoice3Provider479877132.cs │ │ │ ├── InvoiceProvider1724721064.cs │ │ │ ├── OrderProvider347010495.cs │ │ │ ├── ReferenceTypeOrderProvider1892982689.cs │ │ │ ├── TeacherProvider944571072.cs │ │ │ ├── Team2Provider1170066519.cs │ │ │ ├── Team3Provider396017422.cs │ │ │ └── TeamProvider700129768.cs │ ├── StrongTypedId │ │ ├── fsharp_discriminated_union_document_operations.cs │ │ ├── guid_based_document_operations.cs │ │ ├── int_based_document_operations.cs │ │ ├── linq_querying_with_value_types.cs │ │ ├── long_based_document_operations.cs │ │ └── string_id_document_operations.cs │ ├── TestingTypes.cs │ ├── ValueTypeTests.csproj │ ├── VogenIds │ │ ├── guid_based_document_operations.cs │ │ ├── int_based_document_operations.cs │ │ ├── linq_querying_with_value_types.cs │ │ ├── long_based_document_operations.cs │ │ └── string_id_document_operations.cs │ ├── applicability_of_identity_types.cs │ ├── include_usage.cs │ ├── linq_querying_with_value_types.cs │ ├── notes.md │ ├── registration.cs │ └── using_in_batch_queries.cs ├── docker-compose.dcproj ├── docker-compose.yml ├── launchSettings.json └── samples │ ├── AspireHeadlessTripService │ ├── AspireHeadlessTripService.csproj │ └── Program.cs │ ├── AspireHost │ ├── AspireHost.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ └── appsettings.json │ ├── DocSamples │ ├── DocSamples.csproj │ ├── EventSourcingQuickstart.cs │ └── GlobalUsings.cs │ ├── EventSourcingIntro │ ├── EventSourcingIntro.csproj │ └── Program.cs │ ├── Helpdesk │ ├── Helpdesk.Api.Tests │ │ ├── Helpdesk.Api.Tests.csproj │ │ ├── Incidents │ │ │ ├── AcknowledgeResolutionIncidentTests.cs │ │ │ ├── AssignAgentTests.cs │ │ │ ├── CategoriseIncidentTests.cs │ │ │ ├── CloseIncidentTests.cs │ │ │ ├── Fixtures │ │ │ │ ├── ApiWithAcknowledgedIncident.cs │ │ │ │ ├── ApiWithLoggedIncident.cs │ │ │ │ ├── ApiWithResolvedIncident.cs │ │ │ │ └── Scenarios.cs │ │ │ ├── LogIncidentsTests.cs │ │ │ ├── PrioritiseIncidentTests.cs │ │ │ ├── RecordAgentResponseToIncidentTests.cs │ │ │ ├── RecordCustomerResponseToIncidentTests.cs │ │ │ └── ResolveIncidentTests.cs │ │ └── Settings.cs │ ├── Helpdesk.Api │ │ ├── .dockerignore │ │ ├── Core │ │ │ ├── Http │ │ │ │ └── ETagExtensions.cs │ │ │ ├── Kafka │ │ │ │ └── KafkaProducer.cs │ │ │ ├── Marten │ │ │ │ └── DocumentSessionExtensions.cs │ │ │ └── SignalR │ │ │ │ └── SignalRProducer.cs │ │ ├── Dockerfile │ │ ├── Helpdesk.Api.csproj │ │ ├── Incidents │ │ │ ├── GetCustomerIncidentsSummary │ │ │ │ └── IncidentSummary.cs │ │ │ ├── GetIncidentDetails │ │ │ │ └── IncidentDetails.cs │ │ │ ├── GetIncidentHistory │ │ │ │ └── IncidentHistory.cs │ │ │ ├── GetIncidentShortInfo │ │ │ │ └── IncidentShortInfo.cs │ │ │ ├── Incident.cs │ │ │ └── IncidentService.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── appsettings.Development.json │ │ ├── appsettings.Production.json │ │ └── appsettings.json │ ├── Helpdesk.sln │ ├── README.md │ └── docker-compose.yml │ └── MinimalAPI │ ├── MinimalAPI.csproj │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── appsettings.Development.json │ └── appsettings.json └── test ├── mocha.opts └── test_mt_patching.js /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/docs-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/.github/workflows/docs-prs.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.markdownlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/.markdownlintrc -------------------------------------------------------------------------------- /.nuke/build.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/.nuke/build.schema.json -------------------------------------------------------------------------------- /.nuke/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/.nuke/parameters.json -------------------------------------------------------------------------------- /Analysis.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/Analysis.Build.props -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/README.md -------------------------------------------------------------------------------- /assets/mdsnippet-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/assets/mdsnippet-sample.png -------------------------------------------------------------------------------- /benchmarks/1.2.5/BulkLoading-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/benchmarks/1.2.5/BulkLoading-report.html -------------------------------------------------------------------------------- /benchmarks/1.2.5/DocumentActions-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/benchmarks/1.2.5/DocumentActions-report.html -------------------------------------------------------------------------------- /benchmarks/1.2.5/EventActions-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/benchmarks/1.2.5/EventActions-report.html -------------------------------------------------------------------------------- /benchmarks/1.2.5/LinqActions-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/benchmarks/1.2.5/LinqActions-report.html -------------------------------------------------------------------------------- /benchmarks/1.3/BulkLoading-report-default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/benchmarks/1.3/BulkLoading-report-default.md -------------------------------------------------------------------------------- /benchmarks/1.3/BulkLoading-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/benchmarks/1.3/BulkLoading-report-github.md -------------------------------------------------------------------------------- /benchmarks/1.3/BulkLoading-report.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/benchmarks/1.3/BulkLoading-report.csv -------------------------------------------------------------------------------- /benchmarks/1.3/BulkLoading-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/benchmarks/1.3/BulkLoading-report.html -------------------------------------------------------------------------------- /benchmarks/1.3/DocumentActions-report-default.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/1.3/DocumentActions-report-github.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/1.3/DocumentActions-report.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/benchmarks/1.3/DocumentActions-report.csv -------------------------------------------------------------------------------- /benchmarks/1.3/DocumentActions-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/benchmarks/1.3/DocumentActions-report.html -------------------------------------------------------------------------------- /benchmarks/1.3/EventActions-report-default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/benchmarks/1.3/EventActions-report-default.md -------------------------------------------------------------------------------- /benchmarks/1.3/EventActions-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/benchmarks/1.3/EventActions-report-github.md -------------------------------------------------------------------------------- /benchmarks/1.3/EventActions-report.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/benchmarks/1.3/EventActions-report.csv -------------------------------------------------------------------------------- /benchmarks/1.3/EventActions-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/benchmarks/1.3/EventActions-report.html -------------------------------------------------------------------------------- /benchmarks/1.3/LinqActions-report-default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/benchmarks/1.3/LinqActions-report-default.md -------------------------------------------------------------------------------- /benchmarks/1.3/LinqActions-report-github.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/1.3/LinqActions-report.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/benchmarks/1.3/LinqActions-report.csv -------------------------------------------------------------------------------- /benchmarks/1.3/LinqActions-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/benchmarks/1.3/LinqActions-report.html -------------------------------------------------------------------------------- /benchmarks/2.0.baseline/results/DocumentActions-report-default.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/2.0.baseline/results/LinqActions-report-github.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/2.0.fastexpressioncompiler/results/BulkLoading-report-default.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/.editorconfig -------------------------------------------------------------------------------- /docs/.vitepress/algolia-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/.vitepress/algolia-config.json -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/.vitepress/theme/CustomLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/.vitepress/theme/CustomLayout.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/.vitepress/theme/custom.css -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/.vitepress/theme/index.js -------------------------------------------------------------------------------- /docs/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/.vscode/settings.json -------------------------------------------------------------------------------- /docs/cSpell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/cSpell.json -------------------------------------------------------------------------------- /docs/community/tools-and-libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/community/tools-and-libraries.md -------------------------------------------------------------------------------- /docs/configuration/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/configuration/cli.md -------------------------------------------------------------------------------- /docs/configuration/environment-checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/configuration/environment-checks.md -------------------------------------------------------------------------------- /docs/configuration/hostbuilder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/configuration/hostbuilder.md -------------------------------------------------------------------------------- /docs/configuration/ioc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/configuration/ioc.md -------------------------------------------------------------------------------- /docs/configuration/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/configuration/json.md -------------------------------------------------------------------------------- /docs/configuration/multitenancy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/configuration/multitenancy.md -------------------------------------------------------------------------------- /docs/configuration/prebuilding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/configuration/prebuilding.md -------------------------------------------------------------------------------- /docs/configuration/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/configuration/retries.md -------------------------------------------------------------------------------- /docs/configuration/storeoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/configuration/storeoptions.md -------------------------------------------------------------------------------- /docs/devops/devops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/devops/devops.md -------------------------------------------------------------------------------- /docs/diagnostics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/diagnostics.md -------------------------------------------------------------------------------- /docs/documents/aspnetcore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/aspnetcore.md -------------------------------------------------------------------------------- /docs/documents/concurrency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/concurrency.md -------------------------------------------------------------------------------- /docs/documents/deletes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/deletes.md -------------------------------------------------------------------------------- /docs/documents/execute-custom-sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/execute-custom-sql.md -------------------------------------------------------------------------------- /docs/documents/full-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/full-text.md -------------------------------------------------------------------------------- /docs/documents/hierarchies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/hierarchies.md -------------------------------------------------------------------------------- /docs/documents/identity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/identity.md -------------------------------------------------------------------------------- /docs/documents/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/index.md -------------------------------------------------------------------------------- /docs/documents/indexing/computed-indexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/indexing/computed-indexes.md -------------------------------------------------------------------------------- /docs/documents/indexing/duplicated-fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/indexing/duplicated-fields.md -------------------------------------------------------------------------------- /docs/documents/indexing/foreign-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/indexing/foreign-keys.md -------------------------------------------------------------------------------- /docs/documents/indexing/gin-gist-indexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/indexing/gin-gist-indexes.md -------------------------------------------------------------------------------- /docs/documents/indexing/ignore-indexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/indexing/ignore-indexes.md -------------------------------------------------------------------------------- /docs/documents/indexing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/indexing/index.md -------------------------------------------------------------------------------- /docs/documents/indexing/metadata-indexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/indexing/metadata-indexes.md -------------------------------------------------------------------------------- /docs/documents/indexing/unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/indexing/unique.md -------------------------------------------------------------------------------- /docs/documents/initial-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/initial-data.md -------------------------------------------------------------------------------- /docs/documents/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/metadata.md -------------------------------------------------------------------------------- /docs/documents/multi-tenancy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/multi-tenancy.md -------------------------------------------------------------------------------- /docs/documents/noda-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/noda-time.md -------------------------------------------------------------------------------- /docs/documents/partial-updates-patching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/partial-updates-patching.md -------------------------------------------------------------------------------- /docs/documents/querying/advanced-sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/querying/advanced-sql.md -------------------------------------------------------------------------------- /docs/documents/querying/batched-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/querying/batched-queries.md -------------------------------------------------------------------------------- /docs/documents/querying/byid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/querying/byid.md -------------------------------------------------------------------------------- /docs/documents/querying/compiled-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/querying/compiled-queries.md -------------------------------------------------------------------------------- /docs/documents/querying/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/querying/index.md -------------------------------------------------------------------------------- /docs/documents/querying/linq/booleans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/querying/linq/booleans.md -------------------------------------------------------------------------------- /docs/documents/querying/linq/extending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/querying/linq/extending.md -------------------------------------------------------------------------------- /docs/documents/querying/linq/include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/querying/linq/include.md -------------------------------------------------------------------------------- /docs/documents/querying/linq/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/querying/linq/index.md -------------------------------------------------------------------------------- /docs/documents/querying/linq/nulls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/querying/linq/nulls.md -------------------------------------------------------------------------------- /docs/documents/querying/linq/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/querying/linq/operators.md -------------------------------------------------------------------------------- /docs/documents/querying/linq/paging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/querying/linq/paging.md -------------------------------------------------------------------------------- /docs/documents/querying/linq/projections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/querying/linq/projections.md -------------------------------------------------------------------------------- /docs/documents/querying/linq/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/querying/linq/sql.md -------------------------------------------------------------------------------- /docs/documents/querying/linq/strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/querying/linq/strings.md -------------------------------------------------------------------------------- /docs/documents/querying/query-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/querying/query-json.md -------------------------------------------------------------------------------- /docs/documents/querying/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/querying/sql.md -------------------------------------------------------------------------------- /docs/documents/sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/sessions.md -------------------------------------------------------------------------------- /docs/documents/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/storage.md -------------------------------------------------------------------------------- /docs/documents/storing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/documents/storing.md -------------------------------------------------------------------------------- /docs/events/appending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/appending.md -------------------------------------------------------------------------------- /docs/events/archiving.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/archiving.md -------------------------------------------------------------------------------- /docs/events/compacting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/compacting.md -------------------------------------------------------------------------------- /docs/events/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/configuration.md -------------------------------------------------------------------------------- /docs/events/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/index.md -------------------------------------------------------------------------------- /docs/events/learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/learning.md -------------------------------------------------------------------------------- /docs/events/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/metadata.md -------------------------------------------------------------------------------- /docs/events/multitenancy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/multitenancy.md -------------------------------------------------------------------------------- /docs/events/optimizing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/optimizing.md -------------------------------------------------------------------------------- /docs/events/projections/async-daemon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/projections/async-daemon.md -------------------------------------------------------------------------------- /docs/events/projections/custom-aggregates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/projections/custom-aggregates.md -------------------------------------------------------------------------------- /docs/events/projections/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/projections/custom.md -------------------------------------------------------------------------------- /docs/events/projections/event-projections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/projections/event-projections.md -------------------------------------------------------------------------------- /docs/events/projections/flat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/projections/flat.md -------------------------------------------------------------------------------- /docs/events/projections/healthchecks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/projections/healthchecks.md -------------------------------------------------------------------------------- /docs/events/projections/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/projections/index.md -------------------------------------------------------------------------------- /docs/events/projections/inline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/projections/inline.md -------------------------------------------------------------------------------- /docs/events/projections/ioc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/projections/ioc.md -------------------------------------------------------------------------------- /docs/events/projections/live-aggregates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/projections/live-aggregates.md -------------------------------------------------------------------------------- /docs/events/projections/read-aggregates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/projections/read-aggregates.md -------------------------------------------------------------------------------- /docs/events/projections/rebuilding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/projections/rebuilding.md -------------------------------------------------------------------------------- /docs/events/projections/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/projections/testing.md -------------------------------------------------------------------------------- /docs/events/protection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/protection.md -------------------------------------------------------------------------------- /docs/events/querying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/querying.md -------------------------------------------------------------------------------- /docs/events/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/quickstart.md -------------------------------------------------------------------------------- /docs/events/skipping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/skipping.md -------------------------------------------------------------------------------- /docs/events/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/storage.md -------------------------------------------------------------------------------- /docs/events/subscriptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/subscriptions.md -------------------------------------------------------------------------------- /docs/events/versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/events/versioning.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/images/StoreOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/images/StoreOptions.png -------------------------------------------------------------------------------- /docs/images/japanese_marten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/images/japanese_marten.png -------------------------------------------------------------------------------- /docs/images/japanese_marten2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/images/japanese_marten2.png -------------------------------------------------------------------------------- /docs/images/marten.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/images/marten.jpeg -------------------------------------------------------------------------------- /docs/images/martens-in-conference-room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/images/martens-in-conference-room.png -------------------------------------------------------------------------------- /docs/images/ping_marten_jumping_off_branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/images/ping_marten_jumping_off_branch.png -------------------------------------------------------------------------------- /docs/images/postgres-sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/images/postgres-sequence.png -------------------------------------------------------------------------------- /docs/images/postgres-table-definition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/images/postgres-table-definition.png -------------------------------------------------------------------------------- /docs/images/subscriptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/images/subscriptions.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/introduction.md -------------------------------------------------------------------------------- /docs/migration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/migration-guide.md -------------------------------------------------------------------------------- /docs/otel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/otel.md -------------------------------------------------------------------------------- /docs/postgres/casing/case-insensitive-data.md: -------------------------------------------------------------------------------- 1 | # Case Insensitive Data (under construction) 2 | 3 | //TODO 4 | -------------------------------------------------------------------------------- /docs/postgres/casing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/postgres/casing/index.md -------------------------------------------------------------------------------- /docs/postgres/casing/queries.md: -------------------------------------------------------------------------------- 1 | # Queries (under construction) 2 | 3 | //TODO 4 | -------------------------------------------------------------------------------- /docs/postgres/casing/unique-values.md: -------------------------------------------------------------------------------- 1 | # Unique Values (under construction) 2 | 3 | //TODO 4 | -------------------------------------------------------------------------------- /docs/postgres/casing/using-duplicate-fields.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/postgres/casting.md: -------------------------------------------------------------------------------- 1 | # Casting (under construction) 2 | 3 | //TODO 4 | -------------------------------------------------------------------------------- /docs/postgres/dates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/postgres/dates.md -------------------------------------------------------------------------------- /docs/postgres/escaping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/postgres/escaping.md -------------------------------------------------------------------------------- /docs/postgres/if-statements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/postgres/if-statements.md -------------------------------------------------------------------------------- /docs/postgres/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/postgres/index.md -------------------------------------------------------------------------------- /docs/postgres/indexing-jsonb.md: -------------------------------------------------------------------------------- 1 | # Indexing JSONB (under construction) 2 | 3 | //TODO 4 | -------------------------------------------------------------------------------- /docs/postgres/indexing.md: -------------------------------------------------------------------------------- 1 | # Indexing (under construction) 2 | 3 | //TODO 4 | -------------------------------------------------------------------------------- /docs/postgres/naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/postgres/naming.md -------------------------------------------------------------------------------- /docs/postgres/slow-queries.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/postgres/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/postgres/types.md -------------------------------------------------------------------------------- /docs/public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/public/_redirects -------------------------------------------------------------------------------- /docs/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/public/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/public/dotnet-aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/public/dotnet-aws.png -------------------------------------------------------------------------------- /docs/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/public/favicon-16x16.png -------------------------------------------------------------------------------- /docs/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/public/favicon-32x32.png -------------------------------------------------------------------------------- /docs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/public/favicon.ico -------------------------------------------------------------------------------- /docs/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/public/logo.png -------------------------------------------------------------------------------- /docs/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/public/manifest.json -------------------------------------------------------------------------------- /docs/public/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/public/social.png -------------------------------------------------------------------------------- /docs/scenarios/command_handler_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/scenarios/command_handler_workflow.md -------------------------------------------------------------------------------- /docs/scenarios/copy-and-transform-stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/scenarios/copy-and-transform-stream.md -------------------------------------------------------------------------------- /docs/scenarios/dynamic-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/scenarios/dynamic-data.md -------------------------------------------------------------------------------- /docs/scenarios/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/scenarios/index.md -------------------------------------------------------------------------------- /docs/scenarios/using-sequence-for-unique-id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/scenarios/using-sequence-for-unique-id.md -------------------------------------------------------------------------------- /docs/schema/authorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/schema/authorization.md -------------------------------------------------------------------------------- /docs/schema/cleaning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/schema/cleaning.md -------------------------------------------------------------------------------- /docs/schema/exporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/schema/exporting.md -------------------------------------------------------------------------------- /docs/schema/extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/schema/extensions.md -------------------------------------------------------------------------------- /docs/schema/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/schema/index.md -------------------------------------------------------------------------------- /docs/schema/migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/schema/migrations.md -------------------------------------------------------------------------------- /docs/schema/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/schema/storage.md -------------------------------------------------------------------------------- /docs/src/samples/FreightShipping/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/src/samples/FreightShipping/Program.cs -------------------------------------------------------------------------------- /docs/src/samples/FreightShipping/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/src/samples/FreightShipping/Utils.cs -------------------------------------------------------------------------------- /docs/support-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/support-policy.md -------------------------------------------------------------------------------- /docs/testing/integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/testing/integration.md -------------------------------------------------------------------------------- /docs/troubleshoot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/troubleshoot.md -------------------------------------------------------------------------------- /docs/tutorials/advanced-considerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/tutorials/advanced-considerations.md -------------------------------------------------------------------------------- /docs/tutorials/conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/tutorials/conclusion.md -------------------------------------------------------------------------------- /docs/tutorials/cross-aggregate-views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/tutorials/cross-aggregate-views.md -------------------------------------------------------------------------------- /docs/tutorials/event-sourced-aggregate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/tutorials/event-sourced-aggregate.md -------------------------------------------------------------------------------- /docs/tutorials/evolve-to-event-sourcing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/tutorials/evolve-to-event-sourcing.md -------------------------------------------------------------------------------- /docs/tutorials/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/tutorials/getting-started.md -------------------------------------------------------------------------------- /docs/tutorials/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/tutorials/index.md -------------------------------------------------------------------------------- /docs/tutorials/modeling-documents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/tutorials/modeling-documents.md -------------------------------------------------------------------------------- /docs/tutorials/read-model-projections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/tutorials/read-model-projections.md -------------------------------------------------------------------------------- /docs/tutorials/wolverine-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/tutorials/wolverine-integration.md -------------------------------------------------------------------------------- /docs/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/docs/vite.config.js -------------------------------------------------------------------------------- /documentation/content/affix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/content/affix.css -------------------------------------------------------------------------------- /documentation/content/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/content/affix.js -------------------------------------------------------------------------------- /documentation/content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/content/bootstrap.min.css -------------------------------------------------------------------------------- /documentation/content/fubudocs.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/content/fubudocs.theme.css -------------------------------------------------------------------------------- /documentation/content/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/content/images/banner.png -------------------------------------------------------------------------------- /documentation/content/images/emblem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/content/images/emblem.png -------------------------------------------------------------------------------- /documentation/content/images/marten.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/content/images/marten.jpeg -------------------------------------------------------------------------------- /documentation/content/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/content/prism.css -------------------------------------------------------------------------------- /documentation/content/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/content/prism.js -------------------------------------------------------------------------------- /documentation/content/ribbons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/content/ribbons.css -------------------------------------------------------------------------------- /documentation/content/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/content/sidebar.js -------------------------------------------------------------------------------- /documentation/content/stylish-portfolio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/content/stylish-portfolio.css -------------------------------------------------------------------------------- /documentation/content/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/content/theme.css -------------------------------------------------------------------------------- /documentation/diagrams/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/diagrams/querying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/diagrams/querying.md -------------------------------------------------------------------------------- /documentation/diagrams/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/diagrams/storage.md -------------------------------------------------------------------------------- /documentation/diagrams/v4eventstore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/diagrams/v4eventstore.md -------------------------------------------------------------------------------- /documentation/documentation/admin/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/admin/index.md -------------------------------------------------------------------------------- /documentation/documentation/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/cli.md -------------------------------------------------------------------------------- /documentation/documentation/documents/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/documents/index.md -------------------------------------------------------------------------------- /documentation/documentation/events/identity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/events/identity.md -------------------------------------------------------------------------------- /documentation/documentation/events/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/events/index.md -------------------------------------------------------------------------------- /documentation/documentation/events/order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/events/order.txt -------------------------------------------------------------------------------- /documentation/documentation/events/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/events/schema.md -------------------------------------------------------------------------------- /documentation/documentation/events/streams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/events/streams.md -------------------------------------------------------------------------------- /documentation/documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/index.md -------------------------------------------------------------------------------- /documentation/documentation/integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/integration.md -------------------------------------------------------------------------------- /documentation/documentation/order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/order.txt -------------------------------------------------------------------------------- /documentation/documentation/postgres/dates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/postgres/dates.md -------------------------------------------------------------------------------- /documentation/documentation/postgres/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/postgres/index.md -------------------------------------------------------------------------------- /documentation/documentation/postgres/naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/postgres/naming.md -------------------------------------------------------------------------------- /documentation/documentation/postgres/order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/postgres/order.txt -------------------------------------------------------------------------------- /documentation/documentation/postgres/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/postgres/types.md -------------------------------------------------------------------------------- /documentation/documentation/scenarios/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/scenarios/index.md -------------------------------------------------------------------------------- /documentation/documentation/schema/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/schema/index.md -------------------------------------------------------------------------------- /documentation/documentation/schema/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/schema/metadata.md -------------------------------------------------------------------------------- /documentation/documentation/schema/order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/schema/order.txt -------------------------------------------------------------------------------- /documentation/documentation/schema/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/schema/schema.md -------------------------------------------------------------------------------- /documentation/documentation/schema/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/documentation/schema/storage.md -------------------------------------------------------------------------------- /documentation/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/getting_started.md -------------------------------------------------------------------------------- /documentation/layout.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/layout.htm -------------------------------------------------------------------------------- /documentation/migration_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/migration_guide.md -------------------------------------------------------------------------------- /documentation/order.txt: -------------------------------------------------------------------------------- 1 | getting_started 2 | documentation 3 | -------------------------------------------------------------------------------- /documentation/outline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/outline.txt -------------------------------------------------------------------------------- /documentation/splash.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/documentation/splash.htm -------------------------------------------------------------------------------- /mdsnippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/mdsnippets.json -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/package.json -------------------------------------------------------------------------------- /planning/MartenV4-WastazComments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/planning/MartenV4-WastazComments.md -------------------------------------------------------------------------------- /planning/MartenV4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/planning/MartenV4.md -------------------------------------------------------------------------------- /postgresql.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/postgresql.license -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/AspNetCoreWithMarten/EventTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/AspNetCoreWithMarten/EventTypes.cs -------------------------------------------------------------------------------- /src/AspNetCoreWithMarten/IssueController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/AspNetCoreWithMarten/IssueController.cs -------------------------------------------------------------------------------- /src/AspNetCoreWithMarten/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/AspNetCoreWithMarten/Program.cs -------------------------------------------------------------------------------- /src/AspNetCoreWithMarten/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/AspNetCoreWithMarten/User.cs -------------------------------------------------------------------------------- /src/AspNetCoreWithMarten/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/AspNetCoreWithMarten/appsettings.json -------------------------------------------------------------------------------- /src/AspNetODataWithMarten/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/AspNetODataWithMarten/Program.cs -------------------------------------------------------------------------------- /src/CommandLineRunner/CommandLineRunner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CommandLineRunner/CommandLineRunner.csproj -------------------------------------------------------------------------------- /src/CommandLineRunner/ExtraStores.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CommandLineRunner/ExtraStores.cs -------------------------------------------------------------------------------- /src/CommandLineRunner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CommandLineRunner/Program.cs -------------------------------------------------------------------------------- /src/CommandLineRunner/TestCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CommandLineRunner/TestCommand.cs -------------------------------------------------------------------------------- /src/CommandLineRunner/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CommandLineRunner/appsettings.json -------------------------------------------------------------------------------- /src/CoreTests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/CoreTests/BootstrappingExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/BootstrappingExamples.cs -------------------------------------------------------------------------------- /src/CoreTests/CoreTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/CoreTests.csproj -------------------------------------------------------------------------------- /src/CoreTests/DocumentCleanerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/DocumentCleanerTests.cs -------------------------------------------------------------------------------- /src/CoreTests/DocumentSchemaResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/DocumentSchemaResolverTests.cs -------------------------------------------------------------------------------- /src/CoreTests/Examples/EnvironmentChecks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/Examples/EnvironmentChecks.cs -------------------------------------------------------------------------------- /src/CoreTests/Examples/InitialDataSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/Examples/InitialDataSamples.cs -------------------------------------------------------------------------------- /src/CoreTests/Internals/VersionTrackerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/Internals/VersionTrackerTests.cs -------------------------------------------------------------------------------- /src/CoreTests/QuestTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/QuestTypes.cs -------------------------------------------------------------------------------- /src/CoreTests/SessionOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/SessionOptionsTests.cs -------------------------------------------------------------------------------- /src/CoreTests/Sessions/SessionSetupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/Sessions/SessionSetupTests.cs -------------------------------------------------------------------------------- /src/CoreTests/StoreOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/StoreOptionsTests.cs -------------------------------------------------------------------------------- /src/CoreTests/VersionTrackerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/VersionTrackerTests.cs -------------------------------------------------------------------------------- /src/CoreTests/adding_custom_schema_objects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/adding_custom_schema_objects.cs -------------------------------------------------------------------------------- /src/CoreTests/applying_metrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/applying_metrics.cs -------------------------------------------------------------------------------- /src/CoreTests/auto_register_specs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/auto_register_specs.cs -------------------------------------------------------------------------------- /src/CoreTests/enhance_polly_smoke_test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/enhance_polly_smoke_test.cs -------------------------------------------------------------------------------- /src/CoreTests/jasper_fx_mechanics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/jasper_fx_mechanics.cs -------------------------------------------------------------------------------- /src/CoreTests/npgsql_multiplexing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/npgsql_multiplexing.cs -------------------------------------------------------------------------------- /src/CoreTests/request_count_tracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/request_count_tracking.cs -------------------------------------------------------------------------------- /src/CoreTests/retry_mechanism.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/retry_mechanism.cs -------------------------------------------------------------------------------- /src/CoreTests/sticky_connection_mode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/sticky_connection_mode.cs -------------------------------------------------------------------------------- /src/CoreTests/working_with_initial_data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/CoreTests/working_with_initial_data.cs -------------------------------------------------------------------------------- /src/DaemonTests/AggregationExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/AggregationExamples.cs -------------------------------------------------------------------------------- /src/DaemonTests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DaemonTests/DaemonTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/DaemonTests.csproj -------------------------------------------------------------------------------- /src/DaemonTests/Internals/AsyncOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/Internals/AsyncOptionsTests.cs -------------------------------------------------------------------------------- /src/DaemonTests/Internals/GapDetectorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/Internals/GapDetectorTest.cs -------------------------------------------------------------------------------- /src/DaemonTests/Internals/fetching_events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/Internals/fetching_events.cs -------------------------------------------------------------------------------- /src/DaemonTests/TestSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/TestSetup.cs -------------------------------------------------------------------------------- /src/DaemonTests/TestingSupport/Arrival.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/TestingSupport/Arrival.cs -------------------------------------------------------------------------------- /src/DaemonTests/TestingSupport/Departure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/TestingSupport/Departure.cs -------------------------------------------------------------------------------- /src/DaemonTests/TestingSupport/Direction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/TestingSupport/Direction.cs -------------------------------------------------------------------------------- /src/DaemonTests/TestingSupport/IDayEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/TestingSupport/IDayEvent.cs -------------------------------------------------------------------------------- /src/DaemonTests/TestingSupport/Movement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/TestingSupport/Movement.cs -------------------------------------------------------------------------------- /src/DaemonTests/TestingSupport/Stop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/TestingSupport/Stop.cs -------------------------------------------------------------------------------- /src/DaemonTests/TestingSupport/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/TestingSupport/TestLogger.cs -------------------------------------------------------------------------------- /src/DaemonTests/TestingSupport/Travel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/TestingSupport/Travel.cs -------------------------------------------------------------------------------- /src/DaemonTests/TestingSupport/Trip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/TestingSupport/Trip.cs -------------------------------------------------------------------------------- /src/DaemonTests/TestingSupport/TripAborted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/TestingSupport/TripAborted.cs -------------------------------------------------------------------------------- /src/DaemonTests/TestingSupport/TripEnded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/TestingSupport/TripEnded.cs -------------------------------------------------------------------------------- /src/DaemonTests/TestingSupport/TripStarted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/TestingSupport/TripStarted.cs -------------------------------------------------------------------------------- /src/DaemonTests/TestingSupport/TripStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DaemonTests/TestingSupport/TripStream.cs -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/DocumentDbTests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DocumentDbTests/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DocumentDbTests/Bugs/BigIntegerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DocumentDbTests/Bugs/BigIntegerTests.cs -------------------------------------------------------------------------------- /src/DocumentDbTests/Bugs/Bug_620_alias_bool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DocumentDbTests/Bugs/Bug_620_alias_bool.cs -------------------------------------------------------------------------------- /src/DocumentDbTests/Bugs/SelfForeignKeyBugs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DocumentDbTests/Bugs/SelfForeignKeyBugs.cs -------------------------------------------------------------------------------- /src/DocumentDbTests/Deleting/soft_deletes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DocumentDbTests/Deleting/soft_deletes.cs -------------------------------------------------------------------------------- /src/DocumentDbTests/DocumentDbTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DocumentDbTests/DocumentDbTests.csproj -------------------------------------------------------------------------------- /src/DocumentDbTests/Indexes/full_text_index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DocumentDbTests/Indexes/full_text_index.cs -------------------------------------------------------------------------------- /src/DocumentDbTests/Indexes/unique_indexes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DocumentDbTests/Indexes/unique_indexes.cs -------------------------------------------------------------------------------- /src/DocumentDbTests/Reading/UserName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DocumentDbTests/Reading/UserName.cs -------------------------------------------------------------------------------- /src/DocumentDbTests/Reading/query_by_sql.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DocumentDbTests/Reading/query_by_sql.cs -------------------------------------------------------------------------------- /src/DocumentDbTests/Reading/query_plans.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DocumentDbTests/Reading/query_plans.cs -------------------------------------------------------------------------------- /src/DocumentDbTests/TestSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DocumentDbTests/TestSetup.cs -------------------------------------------------------------------------------- /src/DocumentDbTests/Writing/bulk_loading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/DocumentDbTests/Writing/bulk_loading.cs -------------------------------------------------------------------------------- /src/EventAppenderPerfTester/ExportCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventAppenderPerfTester/ExportCommand.cs -------------------------------------------------------------------------------- /src/EventAppenderPerfTester/ITestPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventAppenderPerfTester/ITestPlan.cs -------------------------------------------------------------------------------- /src/EventAppenderPerfTester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventAppenderPerfTester/Program.cs -------------------------------------------------------------------------------- /src/EventAppenderPerfTester/ReadCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventAppenderPerfTester/ReadCommand.cs -------------------------------------------------------------------------------- /src/EventAppenderPerfTester/Results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventAppenderPerfTester/Results.md -------------------------------------------------------------------------------- /src/EventAppenderPerfTester/TestCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventAppenderPerfTester/TestCommand.cs -------------------------------------------------------------------------------- /src/EventAppenderPerfTester/TestInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventAppenderPerfTester/TestInput.cs -------------------------------------------------------------------------------- /src/EventAppenderPerfTester/TestType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventAppenderPerfTester/TestType.cs -------------------------------------------------------------------------------- /src/EventAppenderPerfTester/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventAppenderPerfTester/data.json -------------------------------------------------------------------------------- /src/EventPublisher/EventPublisher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventPublisher/EventPublisher.csproj -------------------------------------------------------------------------------- /src/EventPublisher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventPublisher/Program.cs -------------------------------------------------------------------------------- /src/EventPublisher/StatusBoard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventPublisher/StatusBoard.cs -------------------------------------------------------------------------------- /src/EventSourceWorker/EventSourceWorker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventSourceWorker/EventSourceWorker.csproj -------------------------------------------------------------------------------- /src/EventSourceWorker/NewTripHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventSourceWorker/NewTripHandler.cs -------------------------------------------------------------------------------- /src/EventSourceWorker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventSourceWorker/Program.cs -------------------------------------------------------------------------------- /src/EventSourceWorker/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventSourceWorker/Worker.cs -------------------------------------------------------------------------------- /src/EventSourceWorker/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventSourceWorker/appsettings.json -------------------------------------------------------------------------------- /src/EventSourcingTests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventSourcingTests/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/EventSourcingTests/EventGraphTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventSourcingTests/EventGraphTests.cs -------------------------------------------------------------------------------- /src/EventSourcingTests/EventMappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventSourcingTests/EventMappingTests.cs -------------------------------------------------------------------------------- /src/EventSourcingTests/Examples/DaemonUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventSourcingTests/Examples/DaemonUsage.cs -------------------------------------------------------------------------------- /src/EventSourcingTests/Examples/FetchLatest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventSourcingTests/Examples/FetchLatest.cs -------------------------------------------------------------------------------- /src/EventSourcingTests/Examples/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventSourcingTests/Examples/Project.cs -------------------------------------------------------------------------------- /src/EventSourcingTests/FakeAggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventSourcingTests/FakeAggregate.cs -------------------------------------------------------------------------------- /src/EventSourcingTests/QuestTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventSourcingTests/QuestTypes.cs -------------------------------------------------------------------------------- /src/EventSourcingTests/QuickAppend/Examples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventSourcingTests/QuickAppend/Examples.cs -------------------------------------------------------------------------------- /src/EventSourcingTests/StubEventStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventSourcingTests/StubEventStreamTests.cs -------------------------------------------------------------------------------- /src/EventSourcingTests/archiving_events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventSourcingTests/archiving_events.cs -------------------------------------------------------------------------------- /src/EventSourcingTests/event_statistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventSourcingTests/event_statistics.cs -------------------------------------------------------------------------------- /src/EventSourcingTests/replacing_events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventSourcingTests/replacing_events.cs -------------------------------------------------------------------------------- /src/EventStoreMigrations/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventStoreMigrations/Program.cs -------------------------------------------------------------------------------- /src/EventStoreMigrations/TestCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/EventStoreMigrations/TestCommand.cs -------------------------------------------------------------------------------- /src/FSharpTypes/FSharpTypes.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/FSharpTypes/FSharpTypes.fsproj -------------------------------------------------------------------------------- /src/FSharpTypes/Library.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/FSharpTypes/Library.fs -------------------------------------------------------------------------------- /src/IssueService/Controllers/JsonController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/IssueService/Controllers/JsonController.cs -------------------------------------------------------------------------------- /src/IssueService/IssueService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/IssueService/IssueService.csproj -------------------------------------------------------------------------------- /src/IssueService/MartenSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/IssueService/MartenSettings.cs -------------------------------------------------------------------------------- /src/IssueService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/IssueService/Program.cs -------------------------------------------------------------------------------- /src/IssueService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/IssueService/Startup.cs -------------------------------------------------------------------------------- /src/IssueService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/IssueService/appsettings.Development.json -------------------------------------------------------------------------------- /src/IssueService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/IssueService/appsettings.json -------------------------------------------------------------------------------- /src/LinqTests/Acceptance/casing_support.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Acceptance/casing_support.cs -------------------------------------------------------------------------------- /src/LinqTests/Acceptance/date_type_usage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Acceptance/date_type_usage.cs -------------------------------------------------------------------------------- /src/LinqTests/Acceptance/deep_searches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Acceptance/deep_searches.cs -------------------------------------------------------------------------------- /src/LinqTests/Acceptance/diagnostic_methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Acceptance/diagnostic_methods.cs -------------------------------------------------------------------------------- /src/LinqTests/Acceptance/dictionary_usage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Acceptance/dictionary_usage.cs -------------------------------------------------------------------------------- /src/LinqTests/Acceptance/enum_usage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Acceptance/enum_usage.cs -------------------------------------------------------------------------------- /src/LinqTests/Acceptance/nullable_types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Acceptance/nullable_types.cs -------------------------------------------------------------------------------- /src/LinqTests/Acceptance/number_filtering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Acceptance/number_filtering.cs -------------------------------------------------------------------------------- /src/LinqTests/Acceptance/order_by_clauses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Acceptance/order_by_clauses.cs -------------------------------------------------------------------------------- /src/LinqTests/Acceptance/order_by_sql.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Acceptance/order_by_sql.cs -------------------------------------------------------------------------------- /src/LinqTests/Acceptance/select_clauses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Acceptance/select_clauses.cs -------------------------------------------------------------------------------- /src/LinqTests/Acceptance/select_many.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Acceptance/select_many.cs -------------------------------------------------------------------------------- /src/LinqTests/Acceptance/string_filtering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Acceptance/string_filtering.cs -------------------------------------------------------------------------------- /src/LinqTests/Acceptance/take_and_skip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Acceptance/take_and_skip.cs -------------------------------------------------------------------------------- /src/LinqTests/Acceptance/where_clauses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Acceptance/where_clauses.cs -------------------------------------------------------------------------------- /src/LinqTests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LinqTests/Bugs/Bug_2936_static_list.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Bugs/Bug_2936_static_list.cs -------------------------------------------------------------------------------- /src/LinqTests/Bugs/Bug_3337_select_page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Bugs/Bug_3337_select_page.cs -------------------------------------------------------------------------------- /src/LinqTests/Bugs/hashset_contains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Bugs/hashset_contains.cs -------------------------------------------------------------------------------- /src/LinqTests/Bugs/query_with_order_by.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Bugs/query_with_order_by.cs -------------------------------------------------------------------------------- /src/LinqTests/Compiled/compiled_queries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Compiled/compiled_queries.cs -------------------------------------------------------------------------------- /src/LinqTests/Internals/BoolNotVisitorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Internals/BoolNotVisitorTests.cs -------------------------------------------------------------------------------- /src/LinqTests/LinqTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/LinqTests.csproj -------------------------------------------------------------------------------- /src/LinqTests/Operators/aggregate_functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Operators/aggregate_functions.cs -------------------------------------------------------------------------------- /src/LinqTests/Operators/all_operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Operators/all_operator.cs -------------------------------------------------------------------------------- /src/LinqTests/Operators/any_operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Operators/any_operator.cs -------------------------------------------------------------------------------- /src/LinqTests/Operators/async_enumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Operators/async_enumerable.cs -------------------------------------------------------------------------------- /src/LinqTests/Operators/count_operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Operators/count_operator.cs -------------------------------------------------------------------------------- /src/LinqTests/Operators/distinct_operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Operators/distinct_operator.cs -------------------------------------------------------------------------------- /src/LinqTests/Operators/first_operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Operators/first_operator.cs -------------------------------------------------------------------------------- /src/LinqTests/Operators/is_empty_operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Operators/is_empty_operator.cs -------------------------------------------------------------------------------- /src/LinqTests/Operators/is_one_of_operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Operators/is_one_of_operator.cs -------------------------------------------------------------------------------- /src/LinqTests/Operators/last_operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Operators/last_operator.cs -------------------------------------------------------------------------------- /src/LinqTests/Operators/modulo_operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Operators/modulo_operator.cs -------------------------------------------------------------------------------- /src/LinqTests/Operators/negation_operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Operators/negation_operator.cs -------------------------------------------------------------------------------- /src/LinqTests/Operators/single_operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Operators/single_operator.cs -------------------------------------------------------------------------------- /src/LinqTests/Operators/to_list_operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/Operators/to_list_operator.cs -------------------------------------------------------------------------------- /src/LinqTests/SimpleUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/SimpleUser.cs -------------------------------------------------------------------------------- /src/LinqTests/TestSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/TestSetup.cs -------------------------------------------------------------------------------- /src/LinqTests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; 2 | -------------------------------------------------------------------------------- /src/LinqTests/playing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTests/playing.cs -------------------------------------------------------------------------------- /src/LinqTestsTypes/LinqTestsTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/LinqTestsTypes/LinqTestsTypes.csproj -------------------------------------------------------------------------------- /src/Marten.AspNetCore.Testing/AppFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.AspNetCore.Testing/AppFixture.cs -------------------------------------------------------------------------------- /src/Marten.AspNetCore.Testing/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.AspNetCore.Testing/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Marten.AspNetCore/Marten.AspNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.AspNetCore/Marten.AspNetCore.csproj -------------------------------------------------------------------------------- /src/Marten.AspNetCore/QueryableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.AspNetCore/QueryableExtensions.cs -------------------------------------------------------------------------------- /src/Marten.CommandLine.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; 2 | -------------------------------------------------------------------------------- /src/Marten.NodaTime.Testing/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.NodaTime.Testing/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Marten.NodaTime/Marten.NodaTime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.NodaTime/Marten.NodaTime.csproj -------------------------------------------------------------------------------- /src/Marten.NodaTime/NodaTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.NodaTime/NodaTimeExtensions.cs -------------------------------------------------------------------------------- /src/Marten.Testing.OtherAssembly/ShortGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing.OtherAssembly/ShortGuid.cs -------------------------------------------------------------------------------- /src/Marten.Testing/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/App.config -------------------------------------------------------------------------------- /src/Marten.Testing/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Marten.Testing/CodeTracker/CommitView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/CodeTracker/CommitView.cs -------------------------------------------------------------------------------- /src/Marten.Testing/CodeTracker/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/CodeTracker/Events.cs -------------------------------------------------------------------------------- /src/Marten.Testing/CodeTracker/IssueState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/CodeTracker/IssueState.cs -------------------------------------------------------------------------------- /src/Marten.Testing/CodeTracker/UserAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/CodeTracker/UserAction.cs -------------------------------------------------------------------------------- /src/Marten.Testing/DevelopmentModeRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/DevelopmentModeRegistry.cs -------------------------------------------------------------------------------- /src/Marten.Testing/DocumentStoreExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/DocumentStoreExtensions.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Documents/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Documents/Account.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Documents/Company.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Documents/Company.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Documents/CriticalIssue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Documents/CriticalIssue.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Documents/GuidDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Documents/GuidDoc.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Documents/IntDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Documents/IntDoc.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Documents/Issue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Documents/Issue.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Documents/LongDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Documents/LongDoc.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Documents/StringDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Documents/StringDoc.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Documents/Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Documents/Target.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Documents/TargetIntId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Documents/TargetIntId.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Documents/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Documents/User.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Examples/Deletes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Examples/Deletes.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Examples/ErrorHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Examples/ErrorHandling.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Examples/ExportingDDL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Examples/ExportingDDL.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Examples/IdExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Examples/IdExamples.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Examples/InExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Examples/InExamples.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Examples/IsOneOfExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Examples/IsOneOfExamples.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Examples/LinqExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Examples/LinqExamples.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Examples/Load_by_Id.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Examples/Load_by_Id.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Examples/MetadataUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Examples/MetadataUsage.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Examples/MultiTenancy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Examples/MultiTenancy.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Examples/OtelSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Examples/OtelSamples.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Examples/Policies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Examples/Policies.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Examples/QueryBySql.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Examples/QueryBySql.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Examples/RebuildRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Examples/RebuildRunner.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Examples/RecordingLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Examples/RecordingLogger.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Github/Documents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Github/Documents.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Github/GhRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Github/GhRepository.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Github/GhUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Github/GhUser.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Github/GitHubExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Github/GitHubExporter.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Github/RepositoryHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Github/RepositoryHistory.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Github/bottles.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Marten.Testing/Github/fubucore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Github/fubucore.json -------------------------------------------------------------------------------- /src/Marten.Testing/Github/fubumvc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Github/fubumvc.json -------------------------------------------------------------------------------- /src/Marten.Testing/Github/htmltags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Github/htmltags.json -------------------------------------------------------------------------------- /src/Marten.Testing/Github/storyteller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Github/storyteller.json -------------------------------------------------------------------------------- /src/Marten.Testing/Github/structuremap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Github/structuremap.json -------------------------------------------------------------------------------- /src/Marten.Testing/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Harness/ConnectionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Harness/ConnectionSource.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Harness/StoreContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Harness/StoreContext.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Harness/StoreFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Harness/StoreFixture.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Harness/TestsSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Harness/TestsSettings.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Marten.Testing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Marten.Testing.csproj -------------------------------------------------------------------------------- /src/Marten.Testing/MartenHostEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/MartenHostEnvironment.cs -------------------------------------------------------------------------------- /src/Marten.Testing/RecordingLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/RecordingLogger.cs -------------------------------------------------------------------------------- /src/Marten.Testing/TestSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/TestSetup.cs -------------------------------------------------------------------------------- /src/Marten.Testing/Weird/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.Testing/Weird/Task.cs -------------------------------------------------------------------------------- /src/Marten.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten.sln -------------------------------------------------------------------------------- /src/Marten/AdvancedOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/AdvancedOperations.cs -------------------------------------------------------------------------------- /src/Marten/BulkInsertMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/BulkInsertMode.cs -------------------------------------------------------------------------------- /src/Marten/DefaultMartenLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/DefaultMartenLogger.cs -------------------------------------------------------------------------------- /src/Marten/DocumentStore.EventStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/DocumentStore.EventStore.cs -------------------------------------------------------------------------------- /src/Marten/DocumentStore.IMartenStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/DocumentStore.IMartenStorage.cs -------------------------------------------------------------------------------- /src/Marten/DocumentStore.MultiTenancy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/DocumentStore.MultiTenancy.cs -------------------------------------------------------------------------------- /src/Marten/DocumentStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/DocumentStore.cs -------------------------------------------------------------------------------- /src/Marten/DocumentTracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/DocumentTracking.cs -------------------------------------------------------------------------------- /src/Marten/Events/AggregateToExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/AggregateToExtensions.cs -------------------------------------------------------------------------------- /src/Marten/Events/Aggregation/IMessageBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Aggregation/IMessageBatch.cs -------------------------------------------------------------------------------- /src/Marten/Events/Archiving/AllEventsFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Archiving/AllEventsFilter.cs -------------------------------------------------------------------------------- /src/Marten/Events/Archiving/IArchiveFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Archiving/IArchiveFilter.cs -------------------------------------------------------------------------------- /src/Marten/Events/Archiving/IsSkippedFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Archiving/IsSkippedFilter.cs -------------------------------------------------------------------------------- /src/Marten/Events/Daemon/ProjectionDaemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Daemon/ProjectionDaemon.cs -------------------------------------------------------------------------------- /src/Marten/Events/EventDocumentStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/EventDocumentStorage.cs -------------------------------------------------------------------------------- /src/Marten/Events/EventGraph.Actions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/EventGraph.Actions.cs -------------------------------------------------------------------------------- /src/Marten/Events/EventGraph.FeatureSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/EventGraph.FeatureSchema.cs -------------------------------------------------------------------------------- /src/Marten/Events/EventGraph.GeneratesCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/EventGraph.GeneratesCode.cs -------------------------------------------------------------------------------- /src/Marten/Events/EventGraph.Masking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/EventGraph.Masking.cs -------------------------------------------------------------------------------- /src/Marten/Events/EventGraph.Processing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/EventGraph.Processing.cs -------------------------------------------------------------------------------- /src/Marten/Events/EventGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/EventGraph.cs -------------------------------------------------------------------------------- /src/Marten/Events/EventMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/EventMapping.cs -------------------------------------------------------------------------------- /src/Marten/Events/EventQueryMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/EventQueryMapping.cs -------------------------------------------------------------------------------- /src/Marten/Events/EventSequenceFetcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/EventSequenceFetcher.cs -------------------------------------------------------------------------------- /src/Marten/Events/EventStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/EventStatement.cs -------------------------------------------------------------------------------- /src/Marten/Events/EventStore.Append.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/EventStore.Append.cs -------------------------------------------------------------------------------- /src/Marten/Events/EventStore.Archiving.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/EventStore.Archiving.cs -------------------------------------------------------------------------------- /src/Marten/Events/EventStore.StartStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/EventStore.StartStream.cs -------------------------------------------------------------------------------- /src/Marten/Events/EventStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/EventStore.cs -------------------------------------------------------------------------------- /src/Marten/Events/EventStoreStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/EventStoreStatistics.cs -------------------------------------------------------------------------------- /src/Marten/Events/Fetching/FetchAsyncPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Fetching/FetchAsyncPlan.cs -------------------------------------------------------------------------------- /src/Marten/Events/Fetching/FetchInlinedPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Fetching/FetchInlinedPlan.cs -------------------------------------------------------------------------------- /src/Marten/Events/Fetching/FetchLivePlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Fetching/FetchLivePlan.cs -------------------------------------------------------------------------------- /src/Marten/Events/Fetching/IFetchPlanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Fetching/IFetchPlanner.cs -------------------------------------------------------------------------------- /src/Marten/Events/Fetching/LiveFetchPlanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Fetching/LiveFetchPlanner.cs -------------------------------------------------------------------------------- /src/Marten/Events/IEventAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/IEventAppender.cs -------------------------------------------------------------------------------- /src/Marten/Events/IEventOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/IEventOperations.cs -------------------------------------------------------------------------------- /src/Marten/Events/IEventStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/IEventStorage.cs -------------------------------------------------------------------------------- /src/Marten/Events/IEventStoreOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/IEventStoreOperations.cs -------------------------------------------------------------------------------- /src/Marten/Events/IEventStoreOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/IEventStoreOptions.cs -------------------------------------------------------------------------------- /src/Marten/Events/IEventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/IEventStream.cs -------------------------------------------------------------------------------- /src/Marten/Events/IQueryEventStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/IQueryEventStore.cs -------------------------------------------------------------------------------- /src/Marten/Events/IsArchivedMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/IsArchivedMember.cs -------------------------------------------------------------------------------- /src/Marten/Events/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/LinqExtensions.cs -------------------------------------------------------------------------------- /src/Marten/Events/MartenCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/MartenCommand.cs -------------------------------------------------------------------------------- /src/Marten/Events/MetadataConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/MetadataConfig.cs -------------------------------------------------------------------------------- /src/Marten/Events/Projections/Examples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Projections/Examples.cs -------------------------------------------------------------------------------- /src/Marten/Events/Projections/IProjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Projections/IProjection.cs -------------------------------------------------------------------------------- /src/Marten/Events/QueryEventStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/QueryEventStore.cs -------------------------------------------------------------------------------- /src/Marten/Events/QuickEventAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/QuickEventAppender.cs -------------------------------------------------------------------------------- /src/Marten/Events/RichEventAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/RichEventAppender.cs -------------------------------------------------------------------------------- /src/Marten/Events/Schema/EventTableColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Schema/EventTableColumn.cs -------------------------------------------------------------------------------- /src/Marten/Events/Schema/EventTypeColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Schema/EventTypeColumn.cs -------------------------------------------------------------------------------- /src/Marten/Events/Schema/EventsTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Schema/EventsTable.cs -------------------------------------------------------------------------------- /src/Marten/Events/Schema/IEventTableColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Schema/IEventTableColumn.cs -------------------------------------------------------------------------------- /src/Marten/Events/Schema/SequenceColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Schema/SequenceColumn.cs -------------------------------------------------------------------------------- /src/Marten/Events/Schema/StreamIdColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Schema/StreamIdColumn.cs -------------------------------------------------------------------------------- /src/Marten/Events/Schema/StreamsTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Schema/StreamsTable.cs -------------------------------------------------------------------------------- /src/Marten/Events/Schema/VersionColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/Schema/VersionColumn.cs -------------------------------------------------------------------------------- /src/Marten/Events/StreamState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/StreamState.cs -------------------------------------------------------------------------------- /src/Marten/Events/StubEventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/StubEventStream.cs -------------------------------------------------------------------------------- /src/Marten/Events/TestSupport/ScenarioStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Events/TestSupport/ScenarioStep.cs -------------------------------------------------------------------------------- /src/Marten/Exceptions/ApplyEventException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Exceptions/ApplyEventException.cs -------------------------------------------------------------------------------- /src/Marten/Exceptions/MartenException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Exceptions/MartenException.cs -------------------------------------------------------------------------------- /src/Marten/Exceptions/MartenSchemaException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Exceptions/MartenSchemaException.cs -------------------------------------------------------------------------------- /src/Marten/Exceptions/RollbackException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Exceptions/RollbackException.cs -------------------------------------------------------------------------------- /src/Marten/Exceptions/StreamLockedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Exceptions/StreamLockedException.cs -------------------------------------------------------------------------------- /src/Marten/FullTextIndexAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/FullTextIndexAttribute.cs -------------------------------------------------------------------------------- /src/Marten/HostExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/HostExtensions.cs -------------------------------------------------------------------------------- /src/Marten/IAdvancedSql.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/IAdvancedSql.cs -------------------------------------------------------------------------------- /src/Marten/IDiagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/IDiagnostics.cs -------------------------------------------------------------------------------- /src/Marten/IDocumentOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/IDocumentOperations.cs -------------------------------------------------------------------------------- /src/Marten/IDocumentPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/IDocumentPolicy.cs -------------------------------------------------------------------------------- /src/Marten/IDocumentSchemaResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/IDocumentSchemaResolver.cs -------------------------------------------------------------------------------- /src/Marten/IDocumentSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/IDocumentSession.cs -------------------------------------------------------------------------------- /src/Marten/IDocumentSessionListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/IDocumentSessionListener.cs -------------------------------------------------------------------------------- /src/Marten/IDocumentStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/IDocumentStore.cs -------------------------------------------------------------------------------- /src/Marten/IJsonLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/IJsonLoader.cs -------------------------------------------------------------------------------- /src/Marten/IMartenLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/IMartenLogger.cs -------------------------------------------------------------------------------- /src/Marten/IMartenStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/IMartenStorage.cs -------------------------------------------------------------------------------- /src/Marten/IQueryPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/IQueryPlan.cs -------------------------------------------------------------------------------- /src/Marten/IQuerySession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/IQuerySession.cs -------------------------------------------------------------------------------- /src/Marten/IReadOnlyStoreOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/IReadOnlyStoreOptions.cs -------------------------------------------------------------------------------- /src/Marten/ISerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/ISerializer.cs -------------------------------------------------------------------------------- /src/Marten/ISessionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/ISessionFactory.cs -------------------------------------------------------------------------------- /src/Marten/ITenantOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/ITenantOperations.cs -------------------------------------------------------------------------------- /src/Marten/ITenantQueryOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/ITenantQueryOperations.cs -------------------------------------------------------------------------------- /src/Marten/Internal/IMartenSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Internal/IMartenSession.cs -------------------------------------------------------------------------------- /src/Marten/Internal/IProviderGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Internal/IProviderGraph.cs -------------------------------------------------------------------------------- /src/Marten/Internal/IUpdateBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Internal/IUpdateBatch.cs -------------------------------------------------------------------------------- /src/Marten/Internal/ProviderGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Internal/ProviderGraph.cs -------------------------------------------------------------------------------- /src/Marten/Internal/SecondaryStoreConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Internal/SecondaryStoreConfig.cs -------------------------------------------------------------------------------- /src/Marten/Internal/Sessions/OperationPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Internal/Sessions/OperationPage.cs -------------------------------------------------------------------------------- /src/Marten/Internal/Sessions/QuerySession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Internal/Sessions/QuerySession.cs -------------------------------------------------------------------------------- /src/Marten/Internal/Storage/DocumentStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Internal/Storage/DocumentStorage.cs -------------------------------------------------------------------------------- /src/Marten/Internal/TenantDataCleaner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Internal/TenantDataCleaner.cs -------------------------------------------------------------------------------- /src/Marten/Internal/UnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Internal/UnitOfWork.cs -------------------------------------------------------------------------------- /src/Marten/Internal/UpdateBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Internal/UpdateBatch.cs -------------------------------------------------------------------------------- /src/Marten/Internal/ValueTypeElementMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Internal/ValueTypeElementMember.cs -------------------------------------------------------------------------------- /src/Marten/Internal/VersionTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Internal/VersionTracker.cs -------------------------------------------------------------------------------- /src/Marten/JsonLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/JsonLoader.cs -------------------------------------------------------------------------------- /src/Marten/Linq/CollectionUsage.Compilation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/CollectionUsage.Compilation.cs -------------------------------------------------------------------------------- /src/Marten/Linq/CollectionUsage.Includes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/CollectionUsage.Includes.cs -------------------------------------------------------------------------------- /src/Marten/Linq/CollectionUsage.Parsing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/CollectionUsage.Parsing.cs -------------------------------------------------------------------------------- /src/Marten/Linq/CollectionUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/CollectionUsage.cs -------------------------------------------------------------------------------- /src/Marten/Linq/ConfigureExplainExpressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/ConfigureExplainExpressions.cs -------------------------------------------------------------------------------- /src/Marten/Linq/FetchType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/FetchType.cs -------------------------------------------------------------------------------- /src/Marten/Linq/ICompiledQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/ICompiledQuery.cs -------------------------------------------------------------------------------- /src/Marten/Linq/ILinqQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/ILinqQuery.cs -------------------------------------------------------------------------------- /src/Marten/Linq/IMartenQueryable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/IMartenQueryable.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Includes/IIncludePlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Includes/IIncludePlan.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Includes/IIncludeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Includes/IIncludeReader.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Includes/Include.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Includes/Include.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Includes/IncludePlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Includes/IncludePlan.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Includes/IncludeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Includes/IncludeReader.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Includes/ListIncludePlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Includes/ListIncludePlan.cs -------------------------------------------------------------------------------- /src/Marten/Linq/MartenLinqQueryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/MartenLinqQueryProvider.cs -------------------------------------------------------------------------------- /src/Marten/Linq/MartenLinqQueryable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/MartenLinqQueryable.cs -------------------------------------------------------------------------------- /src/Marten/Linq/MatchesSql/MatchesSqlParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/MatchesSql/MatchesSqlParser.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/BooleanMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/BooleanMember.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/ChildDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/ChildDocument.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/DateTimeMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/DateTimeMember.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/DuplicatedField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/DuplicatedField.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/EnumAsIntegerMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/EnumAsIntegerMember.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/EnumAsStringMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/EnumAsStringMember.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/HasValueMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/HasValueMember.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/IBooleanMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/IBooleanMember.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/ICollectionMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/ICollectionMember.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/IComparableMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/IComparableMember.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/IHasChildrenMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/IHasChildrenMembers.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/IMemberSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/IMemberSource.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/IQueryableMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/IQueryableMember.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/IdMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/IdMember.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/ModuloComparison.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/ModuloComparison.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/NotMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/NotMember.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/QueryableMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/QueryableMember.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/SimpleCastMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/SimpleCastMember.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/StringMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/StringMember.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/StrongTypedIdMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/StrongTypedIdMember.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/ValueTypeMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/ValueTypeMember.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Members/WholeDataMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Members/WholeDataMember.cs -------------------------------------------------------------------------------- /src/Marten/Linq/OrderingDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/OrderingDirection.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Parsing/CompareToComparable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Parsing/CompareToComparable.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Parsing/IMethodCallParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Parsing/IMethodCallParser.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Parsing/JsonPathCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Parsing/JsonPathCreator.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Parsing/LinqQueryParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Parsing/LinqQueryParser.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Parsing/MemberFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Parsing/MemberFinder.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Parsing/Methods/AnyTenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Parsing/Methods/AnyTenant.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Parsing/Methods/IsEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Parsing/Methods/IsEmpty.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Parsing/Methods/IsNotOneOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Parsing/Methods/IsNotOneOf.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Parsing/Methods/IsOneOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Parsing/Methods/IsOneOf.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Parsing/Methods/IsSubsetOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Parsing/Methods/IsSubsetOf.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Parsing/Operators/Ordering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Parsing/Operators/Ordering.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Parsing/SelectParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Parsing/SelectParser.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Parsing/SelectorVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Parsing/SelectorVisitor.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Parsing/SimpleExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Parsing/SimpleExpression.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Parsing/SingleValueMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Parsing/SingleValueMode.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Parsing/WhereClauseParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Parsing/WhereClauseParser.cs -------------------------------------------------------------------------------- /src/Marten/Linq/QueryHandlers/IQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/QueryHandlers/IQueryHandler.cs -------------------------------------------------------------------------------- /src/Marten/Linq/QueryHandlers/LinqConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/QueryHandlers/LinqConstants.cs -------------------------------------------------------------------------------- /src/Marten/Linq/QueryPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/QueryPlan.cs -------------------------------------------------------------------------------- /src/Marten/Linq/QueryStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/QueryStatistics.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Selectors/CastingSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Selectors/CastingSelector.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Selectors/ISelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Selectors/ISelector.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Selectors/NullableSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Selectors/NullableSelector.cs -------------------------------------------------------------------------------- /src/Marten/Linq/Selectors/TimeSpanSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/Selectors/TimeSpanSelector.cs -------------------------------------------------------------------------------- /src/Marten/Linq/SoftDeletes/IsDeletedParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/SoftDeletes/IsDeletedParser.cs -------------------------------------------------------------------------------- /src/Marten/Linq/SqlGeneration/CountClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/SqlGeneration/CountClause.cs -------------------------------------------------------------------------------- /src/Marten/Linq/SqlGeneration/Deletion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/SqlGeneration/Deletion.cs -------------------------------------------------------------------------------- /src/Marten/Linq/SqlGeneration/FromFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/SqlGeneration/FromFragment.cs -------------------------------------------------------------------------------- /src/Marten/Linq/SqlGeneration/HardDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/SqlGeneration/HardDelete.cs -------------------------------------------------------------------------------- /src/Marten/Linq/SqlGeneration/ISelectClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/SqlGeneration/ISelectClause.cs -------------------------------------------------------------------------------- /src/Marten/Linq/SqlGeneration/Literal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/SqlGeneration/Literal.cs -------------------------------------------------------------------------------- /src/Marten/Linq/SqlGeneration/SoftDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/SqlGeneration/SoftDelete.cs -------------------------------------------------------------------------------- /src/Marten/Linq/SqlGeneration/Statement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/SqlGeneration/Statement.cs -------------------------------------------------------------------------------- /src/Marten/Linq/SqlGeneration/StatementMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/SqlGeneration/StatementMode.cs -------------------------------------------------------------------------------- /src/Marten/Linq/SqlGeneration/UnSoftDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/SqlGeneration/UnSoftDelete.cs -------------------------------------------------------------------------------- /src/Marten/Linq/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Linq/notes.md -------------------------------------------------------------------------------- /src/Marten/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/LinqExtensions.cs -------------------------------------------------------------------------------- /src/Marten/LinqParsing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/LinqParsing.cs -------------------------------------------------------------------------------- /src/Marten/Marten.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Marten.csproj -------------------------------------------------------------------------------- /src/Marten/MartenRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/MartenRegistry.cs -------------------------------------------------------------------------------- /src/Marten/MartenSystemPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/MartenSystemPart.cs -------------------------------------------------------------------------------- /src/Marten/Metadata/IRevisioned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Metadata/IRevisioned.cs -------------------------------------------------------------------------------- /src/Marten/Metadata/ISoftDeleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Metadata/ISoftDeleted.cs -------------------------------------------------------------------------------- /src/Marten/Metadata/ITenanted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Metadata/ITenanted.cs -------------------------------------------------------------------------------- /src/Marten/Metadata/ITracked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Metadata/ITracked.cs -------------------------------------------------------------------------------- /src/Marten/Metadata/IVersioned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Metadata/IVersioned.cs -------------------------------------------------------------------------------- /src/Marten/Metadata/SoftDeletedPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Metadata/SoftDeletedPolicy.cs -------------------------------------------------------------------------------- /src/Marten/Metadata/TenancyPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Metadata/TenancyPolicy.cs -------------------------------------------------------------------------------- /src/Marten/Metadata/TrackedPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Metadata/TrackedPolicy.cs -------------------------------------------------------------------------------- /src/Marten/Metadata/VersionedPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Metadata/VersionedPolicy.cs -------------------------------------------------------------------------------- /src/Marten/NulloLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/NulloLogger.cs -------------------------------------------------------------------------------- /src/Marten/NulloMartenLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/NulloMartenLogger.cs -------------------------------------------------------------------------------- /src/Marten/Pagination/IPagedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Pagination/IPagedList.cs -------------------------------------------------------------------------------- /src/Marten/Pagination/PagedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Pagination/PagedList.cs -------------------------------------------------------------------------------- /src/Marten/PartitioningExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/PartitioningExpression.cs -------------------------------------------------------------------------------- /src/Marten/Patching/IPatchExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Patching/IPatchExpression.cs -------------------------------------------------------------------------------- /src/Marten/Patching/PatchExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Patching/PatchExpression.cs -------------------------------------------------------------------------------- /src/Marten/Patching/PatchOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Patching/PatchOperation.cs -------------------------------------------------------------------------------- /src/Marten/Patching/PatchingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Patching/PatchingExtensions.cs -------------------------------------------------------------------------------- /src/Marten/Patching/RemoveAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Patching/RemoveAction.cs -------------------------------------------------------------------------------- /src/Marten/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Marten/QuerySessionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/QuerySessionExtensions.cs -------------------------------------------------------------------------------- /src/Marten/QueryableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/QueryableExtensions.cs -------------------------------------------------------------------------------- /src/Marten/Schema/Arguments/DocTypeArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/Arguments/DocTypeArgument.cs -------------------------------------------------------------------------------- /src/Marten/Schema/Arguments/UpsertArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/Arguments/UpsertArgument.cs -------------------------------------------------------------------------------- /src/Marten/Schema/Arguments/VersionArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/Arguments/VersionArgument.cs -------------------------------------------------------------------------------- /src/Marten/Schema/BulkLoading/IBulkLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/BulkLoading/IBulkLoader.cs -------------------------------------------------------------------------------- /src/Marten/Schema/ColumnValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/ColumnValue.cs -------------------------------------------------------------------------------- /src/Marten/Schema/ComputedIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/ComputedIndex.cs -------------------------------------------------------------------------------- /src/Marten/Schema/DatabaseGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/DatabaseGenerator.cs -------------------------------------------------------------------------------- /src/Marten/Schema/DdlTemplateAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/DdlTemplateAttribute.cs -------------------------------------------------------------------------------- /src/Marten/Schema/DeleteStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/DeleteStyle.cs -------------------------------------------------------------------------------- /src/Marten/Schema/DoNotPartitionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/DoNotPartitionAttribute.cs -------------------------------------------------------------------------------- /src/Marten/Schema/DocumentAliasAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/DocumentAliasAttribute.cs -------------------------------------------------------------------------------- /src/Marten/Schema/DocumentForeignKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/DocumentForeignKey.cs -------------------------------------------------------------------------------- /src/Marten/Schema/DocumentIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/DocumentIndex.cs -------------------------------------------------------------------------------- /src/Marten/Schema/DocumentMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/DocumentMapping.cs -------------------------------------------------------------------------------- /src/Marten/Schema/DocumentSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/DocumentSchema.cs -------------------------------------------------------------------------------- /src/Marten/Schema/DuplicateFieldAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/DuplicateFieldAttribute.cs -------------------------------------------------------------------------------- /src/Marten/Schema/ForeignKeyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/ForeignKeyAttribute.cs -------------------------------------------------------------------------------- /src/Marten/Schema/ForeignKeyConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/ForeignKeyConstraint.cs -------------------------------------------------------------------------------- /src/Marten/Schema/GinIndexedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/GinIndexedAttribute.cs -------------------------------------------------------------------------------- /src/Marten/Schema/HiLoSequenceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/HiLoSequenceAttribute.cs -------------------------------------------------------------------------------- /src/Marten/Schema/IDocumentCleaner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/IDocumentCleaner.cs -------------------------------------------------------------------------------- /src/Marten/Schema/IDocumentMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/IDocumentMapping.cs -------------------------------------------------------------------------------- /src/Marten/Schema/IInitialData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/IInitialData.cs -------------------------------------------------------------------------------- /src/Marten/Schema/Identity/GuidIdGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/Identity/GuidIdGeneration.cs -------------------------------------------------------------------------------- /src/Marten/Schema/Identity/IIdGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/Identity/IIdGeneration.cs -------------------------------------------------------------------------------- /src/Marten/Schema/Identity/NoOpIdGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/Identity/NoOpIdGeneration.cs -------------------------------------------------------------------------------- /src/Marten/Schema/IdentityAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/IdentityAttribute.cs -------------------------------------------------------------------------------- /src/Marten/Schema/IndexedCreatedAtAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/IndexedCreatedAtAttribute.cs -------------------------------------------------------------------------------- /src/Marten/Schema/IndexedTenantIdAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/IndexedTenantIdAttribute.cs -------------------------------------------------------------------------------- /src/Marten/Schema/InsertExceptionTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/InsertExceptionTransform.cs -------------------------------------------------------------------------------- /src/Marten/Schema/MartenAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/MartenAttribute.cs -------------------------------------------------------------------------------- /src/Marten/Schema/MartenDocumentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/MartenDocumentAttribute.cs -------------------------------------------------------------------------------- /src/Marten/Schema/MartenEventAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/MartenEventAttribute.cs -------------------------------------------------------------------------------- /src/Marten/Schema/MetadataAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/MetadataAttributes.cs -------------------------------------------------------------------------------- /src/Marten/Schema/MultiTenantedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/MultiTenantedAttribute.cs -------------------------------------------------------------------------------- /src/Marten/Schema/NgramIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/NgramIndex.cs -------------------------------------------------------------------------------- /src/Marten/Schema/PropertySearching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/PropertySearching.cs -------------------------------------------------------------------------------- /src/Marten/Schema/SQL/mt_get_next_hi.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SQL/mt_get_next_hi.sql -------------------------------------------------------------------------------- /src/Marten/Schema/SQL/mt_grams_array.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SQL/mt_grams_array.sql -------------------------------------------------------------------------------- /src/Marten/Schema/SQL/mt_grams_query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SQL/mt_grams_query.sql -------------------------------------------------------------------------------- /src/Marten/Schema/SQL/mt_grams_vector.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SQL/mt_grams_vector.sql -------------------------------------------------------------------------------- /src/Marten/Schema/SQL/mt_immutable_date.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SQL/mt_immutable_date.sql -------------------------------------------------------------------------------- /src/Marten/Schema/SQL/mt_immutable_time.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SQL/mt_immutable_time.sql -------------------------------------------------------------------------------- /src/Marten/Schema/SQL/mt_jsonb_append.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SQL/mt_jsonb_append.sql -------------------------------------------------------------------------------- /src/Marten/Schema/SQL/mt_jsonb_copy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SQL/mt_jsonb_copy.sql -------------------------------------------------------------------------------- /src/Marten/Schema/SQL/mt_jsonb_duplicate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SQL/mt_jsonb_duplicate.sql -------------------------------------------------------------------------------- /src/Marten/Schema/SQL/mt_jsonb_increment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SQL/mt_jsonb_increment.sql -------------------------------------------------------------------------------- /src/Marten/Schema/SQL/mt_jsonb_insert.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SQL/mt_jsonb_insert.sql -------------------------------------------------------------------------------- /src/Marten/Schema/SQL/mt_jsonb_move.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SQL/mt_jsonb_move.sql -------------------------------------------------------------------------------- /src/Marten/Schema/SQL/mt_jsonb_patch.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SQL/mt_jsonb_patch.sql -------------------------------------------------------------------------------- /src/Marten/Schema/SQL/mt_jsonb_remove.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SQL/mt_jsonb_remove.sql -------------------------------------------------------------------------------- /src/Marten/Schema/SQL/mt_safe_unaccent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SQL/mt_safe_unaccent.sql -------------------------------------------------------------------------------- /src/Marten/Schema/SchemaBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SchemaBuilder.cs -------------------------------------------------------------------------------- /src/Marten/Schema/SchemaConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SchemaConstants.cs -------------------------------------------------------------------------------- /src/Marten/Schema/SchemaObjects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SchemaObjects.sql -------------------------------------------------------------------------------- /src/Marten/Schema/SingleTenantedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SingleTenantedAttribute.cs -------------------------------------------------------------------------------- /src/Marten/Schema/SoftDeletedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SoftDeletedAttribute.cs -------------------------------------------------------------------------------- /src/Marten/Schema/StructuralTypedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/StructuralTypedAttribute.cs -------------------------------------------------------------------------------- /src/Marten/Schema/SubClassMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SubClassMapping.cs -------------------------------------------------------------------------------- /src/Marten/Schema/SubClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/SubClasses.cs -------------------------------------------------------------------------------- /src/Marten/Schema/UniqueIndexAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/UniqueIndexAttribute.cs -------------------------------------------------------------------------------- /src/Marten/Schema/UniqueIndexType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/UniqueIndexType.cs -------------------------------------------------------------------------------- /src/Marten/Schema/VersionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Schema/VersionAttribute.cs -------------------------------------------------------------------------------- /src/Marten/Services/CommandRunnerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/CommandRunnerExtensions.cs -------------------------------------------------------------------------------- /src/Marten/Services/CommandRunnerMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/CommandRunnerMode.cs -------------------------------------------------------------------------------- /src/Marten/Services/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/Diagnostics.cs -------------------------------------------------------------------------------- /src/Marten/Services/IChangeSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/IChangeSet.cs -------------------------------------------------------------------------------- /src/Marten/Services/IDeletion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/IDeletion.cs -------------------------------------------------------------------------------- /src/Marten/Services/ISessionWorkTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/ISessionWorkTracker.cs -------------------------------------------------------------------------------- /src/Marten/Services/ISingleQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/ISingleQueryHandler.cs -------------------------------------------------------------------------------- /src/Marten/Services/ISingleQueryRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/ISingleQueryRunner.cs -------------------------------------------------------------------------------- /src/Marten/Services/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/IUnitOfWork.cs -------------------------------------------------------------------------------- /src/Marten/Services/Json/SerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/Json/SerializerFactory.cs -------------------------------------------------------------------------------- /src/Marten/Services/Json/SerializerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/Json/SerializerOptions.cs -------------------------------------------------------------------------------- /src/Marten/Services/Json/SerializerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/Json/SerializerType.cs -------------------------------------------------------------------------------- /src/Marten/Services/JsonArrayPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/JsonArrayPool.cs -------------------------------------------------------------------------------- /src/Marten/Services/JsonNetSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/JsonNetSerializer.cs -------------------------------------------------------------------------------- /src/Marten/Services/JsonStreamingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/JsonStreamingExtensions.cs -------------------------------------------------------------------------------- /src/Marten/Services/MartenActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/MartenActivator.cs -------------------------------------------------------------------------------- /src/Marten/Services/NoDataReturnedCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/NoDataReturnedCall.cs -------------------------------------------------------------------------------- /src/Marten/Services/OpenTelemetryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/OpenTelemetryOptions.cs -------------------------------------------------------------------------------- /src/Marten/Services/SessionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/SessionOptions.cs -------------------------------------------------------------------------------- /src/Marten/Services/VersionTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Services/VersionTracker.cs -------------------------------------------------------------------------------- /src/Marten/Sessions/DefaultSessionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Sessions/DefaultSessionFactory.cs -------------------------------------------------------------------------------- /src/Marten/Sessions/IdentitySessionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Sessions/IdentitySessionFactory.cs -------------------------------------------------------------------------------- /src/Marten/Sessions/TenantedSessionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Sessions/TenantedSessionFactory.cs -------------------------------------------------------------------------------- /src/Marten/Storage/BulkInsertion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/BulkInsertion.cs -------------------------------------------------------------------------------- /src/Marten/Storage/CompositeDocumentCleaner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/CompositeDocumentCleaner.cs -------------------------------------------------------------------------------- /src/Marten/Storage/DataColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/DataColumn.cs -------------------------------------------------------------------------------- /src/Marten/Storage/DefaultTenancy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/DefaultTenancy.cs -------------------------------------------------------------------------------- /src/Marten/Storage/DocumentTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/DocumentTable.cs -------------------------------------------------------------------------------- /src/Marten/Storage/DuplicatedFieldColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/DuplicatedFieldColumn.cs -------------------------------------------------------------------------------- /src/Marten/Storage/IMartenDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/IMartenDatabase.cs -------------------------------------------------------------------------------- /src/Marten/Storage/ISelectableColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/ISelectableColumn.cs -------------------------------------------------------------------------------- /src/Marten/Storage/ITenancy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/ITenancy.cs -------------------------------------------------------------------------------- /src/Marten/Storage/IdColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/IdColumn.cs -------------------------------------------------------------------------------- /src/Marten/Storage/InsertFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/InsertFunction.cs -------------------------------------------------------------------------------- /src/Marten/Storage/MartenDatabase.Execution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/MartenDatabase.Execution.cs -------------------------------------------------------------------------------- /src/Marten/Storage/MartenDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/MartenDatabase.cs -------------------------------------------------------------------------------- /src/Marten/Storage/MasterTableTenancy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/MasterTableTenancy.cs -------------------------------------------------------------------------------- /src/Marten/Storage/Metadata/CreatedAtColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/Metadata/CreatedAtColumn.cs -------------------------------------------------------------------------------- /src/Marten/Storage/Metadata/DeletedAtColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/Metadata/DeletedAtColumn.cs -------------------------------------------------------------------------------- /src/Marten/Storage/OriginWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/OriginWriter.cs -------------------------------------------------------------------------------- /src/Marten/Storage/OverwriteFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/OverwriteFunction.cs -------------------------------------------------------------------------------- /src/Marten/Storage/StandinDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/StandinDatabase.cs -------------------------------------------------------------------------------- /src/Marten/Storage/StaticMultiTenancy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/StaticMultiTenancy.cs -------------------------------------------------------------------------------- /src/Marten/Storage/StorageFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/StorageFeatures.cs -------------------------------------------------------------------------------- /src/Marten/Storage/SystemFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/SystemFunction.cs -------------------------------------------------------------------------------- /src/Marten/Storage/SystemFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/SystemFunctions.cs -------------------------------------------------------------------------------- /src/Marten/Storage/Tenancy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/Tenancy.cs -------------------------------------------------------------------------------- /src/Marten/Storage/TenancyStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/TenancyStyle.cs -------------------------------------------------------------------------------- /src/Marten/Storage/Tenant2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/Tenant2.cs -------------------------------------------------------------------------------- /src/Marten/Storage/UpdateFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/UpdateFunction.cs -------------------------------------------------------------------------------- /src/Marten/Storage/UpsertFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Storage/UpsertFunction.cs -------------------------------------------------------------------------------- /src/Marten/StoreOptions.GeneratesCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/StoreOptions.GeneratesCode.cs -------------------------------------------------------------------------------- /src/Marten/StoreOptions.Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/StoreOptions.Identity.cs -------------------------------------------------------------------------------- /src/Marten/StoreOptions.MemberFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/StoreOptions.MemberFactory.cs -------------------------------------------------------------------------------- /src/Marten/StoreOptions.Registration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/StoreOptions.Registration.cs -------------------------------------------------------------------------------- /src/Marten/StoreOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/StoreOptions.cs -------------------------------------------------------------------------------- /src/Marten/Subscriptions/ISubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Subscriptions/ISubscription.cs -------------------------------------------------------------------------------- /src/Marten/Util/CommandExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Util/CommandExtensions.cs -------------------------------------------------------------------------------- /src/Marten/Util/GenericsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Util/GenericsExtensions.cs -------------------------------------------------------------------------------- /src/Marten/Util/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Util/ReflectionExtensions.cs -------------------------------------------------------------------------------- /src/Marten/Util/SOHSkippingStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Util/SOHSkippingStream.cs -------------------------------------------------------------------------------- /src/Marten/Util/SharedBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Util/SharedBuffer.cs -------------------------------------------------------------------------------- /src/Marten/Util/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Util/StreamExtensions.cs -------------------------------------------------------------------------------- /src/Marten/Util/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/Marten/Util/StringExtensions.cs -------------------------------------------------------------------------------- /src/MartenBenchmarks/BenchmarkStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/MartenBenchmarks/BenchmarkStore.cs -------------------------------------------------------------------------------- /src/MartenBenchmarks/BulkLoading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/MartenBenchmarks/BulkLoading.cs -------------------------------------------------------------------------------- /src/MartenBenchmarks/DocumentActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/MartenBenchmarks/DocumentActions.cs -------------------------------------------------------------------------------- /src/MartenBenchmarks/EventActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/MartenBenchmarks/EventActions.cs -------------------------------------------------------------------------------- /src/MartenBenchmarks/LinqActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/MartenBenchmarks/LinqActions.cs -------------------------------------------------------------------------------- /src/MartenBenchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/MartenBenchmarks/Program.cs -------------------------------------------------------------------------------- /src/MemoryUsageChecker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/MemoryUsageChecker/Program.cs -------------------------------------------------------------------------------- /src/MultiHostTests/00_init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/MultiHostTests/00_init.sql -------------------------------------------------------------------------------- /src/MultiHostTests/MultiHostTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/MultiHostTests/MultiHostTests.cs -------------------------------------------------------------------------------- /src/MultiHostTests/MultiHostTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/MultiHostTests/MultiHostTests.csproj -------------------------------------------------------------------------------- /src/MultiHostTests/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/MultiHostTests/docker-compose.yaml -------------------------------------------------------------------------------- /src/MultiTenancyTests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/MultiTenancyTests/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/MultiTenancyTests/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; 2 | -------------------------------------------------------------------------------- /src/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/NuGet.Config -------------------------------------------------------------------------------- /src/PatchingTests/Patching/multi_tenancy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/PatchingTests/Patching/multi_tenancy.cs -------------------------------------------------------------------------------- /src/PatchingTests/Patching/patching_api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/PatchingTests/Patching/patching_api.cs -------------------------------------------------------------------------------- /src/PatchingTests/PatchingTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/PatchingTests/PatchingTests.csproj -------------------------------------------------------------------------------- /src/StressTests/StressTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/StressTests/StressTests.csproj -------------------------------------------------------------------------------- /src/StressTests/create_database_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/StressTests/create_database_Tests.cs -------------------------------------------------------------------------------- /src/TestSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/TestSetup.cs -------------------------------------------------------------------------------- /src/TestingSupport/TestingSupport.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/TestingSupport/TestingSupport.csproj -------------------------------------------------------------------------------- /src/ValueTypeTests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/ValueTypeTests/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ValueTypeTests/TestingTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/ValueTypeTests/TestingTypes.cs -------------------------------------------------------------------------------- /src/ValueTypeTests/ValueTypeTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/ValueTypeTests/ValueTypeTests.csproj -------------------------------------------------------------------------------- /src/ValueTypeTests/include_usage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/ValueTypeTests/include_usage.cs -------------------------------------------------------------------------------- /src/ValueTypeTests/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/ValueTypeTests/notes.md -------------------------------------------------------------------------------- /src/ValueTypeTests/registration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/ValueTypeTests/registration.cs -------------------------------------------------------------------------------- /src/docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/docker-compose.dcproj -------------------------------------------------------------------------------- /src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/docker-compose.yml -------------------------------------------------------------------------------- /src/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/launchSettings.json -------------------------------------------------------------------------------- /src/samples/AspireHost/AspireHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/samples/AspireHost/AspireHost.csproj -------------------------------------------------------------------------------- /src/samples/AspireHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/samples/AspireHost/Program.cs -------------------------------------------------------------------------------- /src/samples/AspireHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/samples/AspireHost/appsettings.json -------------------------------------------------------------------------------- /src/samples/DocSamples/DocSamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/samples/DocSamples/DocSamples.csproj -------------------------------------------------------------------------------- /src/samples/DocSamples/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; 2 | -------------------------------------------------------------------------------- /src/samples/EventSourcingIntro/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/samples/EventSourcingIntro/Program.cs -------------------------------------------------------------------------------- /src/samples/Helpdesk/Helpdesk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/samples/Helpdesk/Helpdesk.sln -------------------------------------------------------------------------------- /src/samples/Helpdesk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/samples/Helpdesk/README.md -------------------------------------------------------------------------------- /src/samples/Helpdesk/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/samples/Helpdesk/docker-compose.yml -------------------------------------------------------------------------------- /src/samples/MinimalAPI/MinimalAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/samples/MinimalAPI/MinimalAPI.csproj -------------------------------------------------------------------------------- /src/samples/MinimalAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/samples/MinimalAPI/Program.cs -------------------------------------------------------------------------------- /src/samples/MinimalAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/src/samples/MinimalAPI/appsettings.json -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/test_mt_patching.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasperFx/marten/HEAD/test/test_mt_patching.js --------------------------------------------------------------------------------