Endatix.Modules.Reporting 0.7.2

dotnet add package Endatix.Modules.Reporting --version 0.7.2
                    
NuGet\Install-Package Endatix.Modules.Reporting -Version 0.7.2
                    
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.2" />
                    
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.2" />
                    
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.2
                    
#r "nuget: Endatix.Modules.Reporting, 0.7.2"
                    
#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.2
                    
#: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.2
                    
Install as a Cake Addin
#tool nuget:?package=Endatix.Modules.Reporting&version=0.7.2
                    
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 Export delivery configuration (CSV, JSON, 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

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

  • Persistence/Migrations/PostgreSql/available (InitialReporting)
  • Persistence/Migrations/SqlServer/not yet available (endatix/endatix#813)

Set ConnectionStrings:DefaultConnection_DbProvider to match the provider you are generating for.

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).

PostgreSQL

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

SQL Server

Blocked until #813. Use PostgreSQL for Reporting until SQL Server migrations are added.

ConnectionStrings__DefaultConnection_DbProvider=SqlServer \
dotnet ef migrations add <Name> \
  --startup-project src/Endatix.WebHost \
  --project src/Endatix.Modules.Reporting \
  --context ReportingDbContext \
  --output-dir Persistence/Migrations/SqlServer

Migrations apply automatically at startup when Customizations:Reporting:ApplyMigrationsAtStartup is true (default) and Endatix:Data:EnableAutoMigrations is enabled.

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.2 171 7/31/2026