Endatix.Modules.Reporting 0.7.6

dotnet add package Endatix.Modules.Reporting --version 0.7.6
                    
NuGet\Install-Package Endatix.Modules.Reporting -Version 0.7.6
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Endatix.Modules.Reporting" Version="0.7.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Endatix.Modules.Reporting" Version="0.7.6" />
                    
Directory.Packages.props
<PackageReference Include="Endatix.Modules.Reporting" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Endatix.Modules.Reporting --version 0.7.6
                    
#r "nuget: Endatix.Modules.Reporting, 0.7.6"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Endatix.Modules.Reporting@0.7.6
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Endatix.Modules.Reporting&version=0.7.6
                    
Install as a Cake Addin
#tool nuget:?package=Endatix.Modules.Reporting&version=0.7.6
                    
Install as a Cake Tool

Endatix.Modules.Reporting

Reporting bounded context for BI-ready survey exports.

Endatix Platform is an open-source data collection and management library for .NET. It is designed for building secure, scalable, and integrated form-centric applications that work with SurveyJS. Endatix empowers business users with advanced workflows, automation, and meaningful insights.

Installation:

dotnet add package Endatix.Modules.Reporting

For running and hosting the Endatix Platform, Endatix.Api.Host is the recommended main package as it simplifies the installation and setup process.

dotnet add package Endatix.Api.Host

The module is registered automatically by EndatixBuilder.UseDefaults() — no host code change is needed to get it, and none is needed to keep it off. Availability is decided at runtime by the feature flag (see Registration), not by whether the package is present.

Module layout (Modulith)

Package Contents
Endatix.Modules.Reporting.Contracts Public API surface: status codes, read DTOs, future commands/queries/events
Endatix.Modules.Reporting Domain (SubmissionIntegrationState, FlattenedSubmission, …), persistence, features

Integration pipeline state lives on FlattenedSubmission in the reporting schema. A future reporting read API can expose SubmissionIntegrationSnapshotDto per submission without touching core Submission list endpoints.

Schema

Database schema: reporting

Table Purpose
FormSchemas Compiled form schema (FlatteningMap + Codebook) per tenant + form
FlattenedSubmissions Flat submission answers aligned to form schema
ExportFormats Tenant export rows (CSV, JSON, Excel/XLSX, codebook)
SurveyTypeExportMappings Allowed export formats per survey type (with optional default and tenant fallback)

FormSchema compile modes

On every compile path (outbox form.definition.updated, manual POST .../reporting/compile-schema):

Mode When Behavior
Replace Form has 0 real submissions (IsTestSubmission == false) Rebuild FlatteningMap + Codebook from the current definition only. After save, hard-delete that form’s FlattenedSubmissions rows (test flatten debris).
Merge Form has ≥1 real submission Append-only merge: retain historical columns, questions, and choice-catalog values.

Test submissions alone do not force merge. This is a defensive bridge until Form Publish makes publish the controlled compile moment.

Registration

Registered via EndatixBuilder.UseDefaults()UseModule(ReportingModule.Instance). The module class implements IEndatixModule plus the optional capabilities IHasFeatureFlag (runtime gating), IHasDbMigrations (migration contributor) and IHasFastEndpoints (endpoint discovery, plus serializers and OpenAPI tags — applied by the host only when the module actually registers). It is disabled by default until enabled in configuration:

"Endatix": {
  "FeatureFlags": {
    "ReportingModule": true
  }
}

Migrations

Run the commands from the oss folder.

Always use Endatix.WebHost as startup project, and this module as the migrations project (ReportingDbContext). Set ConnectionStrings:DefaultConnection_DbProvider to the provider you are generating for.

Migrations live in provider-specific subfolders under Persistence/Migrations/:

  • Persistence/Migrations/PostgreSql/available (InitialReporting, SeedDefaultExportFormats)

    Tenant export formats are rows, not code. Runtime catalog: DefaultExportFormats.All (SeedDefaultsAsync / tenant.created). Existing tenants: frozen SQL in SeedDefaultExportFormats — do not generate that migration from the catalog; a new default needs a new data migration. New tenants: outbox tenant.createdIDefaultExportFormatsSeeder.

  • Persistence/Migrations/SqlServer/not yet available. SQL Server support is coming soon (endatix/endatix#813). Use PostgreSQL for Reporting until then.

SQL Server hosts: Do not enable ReportingModule with Endatix:Data:EnableAutoMigrations until SQL Server migrations land in #813. The module DbContext and migration contributor register on SQL Server, but startup auto-migration finds no migrations for the active provider and logs an error (the reporting schema is not created).

Startup also applies Reporting migrations when Customizations:Reporting:ApplyMigrationsAtStartup is true (default) and Endatix:Data:EnableAutoMigrations is enabled.

Add migration

PostgreSQL only (SQL Server: wait for #813).

dotnet ef migrations add <MigrationName> \
  --startup-project src/Endatix.WebHost \
  --project src/Endatix.Modules.Reporting \
  --context ReportingDbContext \
  --output-dir Persistence/Migrations/PostgreSql

Remove last migration

  1. List migrations and check whether the last one is already applied locally:
dotnet ef migrations list \
  --startup-project src/Endatix.WebHost \
  --project src/Endatix.Modules.Reporting \
  --context ReportingDbContext
  1. If it is applied, roll the database back to the previous migration:
dotnet ef database update <PreviousMigrationName> \
  --startup-project src/Endatix.WebHost \
  --project src/Endatix.Modules.Reporting \
  --context ReportingDbContext
  1. Remove the last migration:
dotnet ef migrations remove \
  --startup-project src/Endatix.WebHost \
  --project src/Endatix.Modules.Reporting \
  --context ReportingDbContext

Apply migrations

dotnet ef database update \
  --startup-project src/Endatix.WebHost \
  --project src/Endatix.Modules.Reporting \
  --context ReportingDbContext
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Endatix.Modules.Reporting:

Package Downloads
Endatix.Hosting

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.7.6 109 9/9/2026
0.7.5 314 8/30/2026
0.7.4 166 8/26/2026
0.7.3 254 8/14/2026
0.7.2 227 7/31/2026