Audit.NET.PostgreSql 27.5.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package Audit.NET.PostgreSql --version 27.5.3
                    
NuGet\Install-Package Audit.NET.PostgreSql -Version 27.5.3
                    
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="Audit.NET.PostgreSql" Version="27.5.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Audit.NET.PostgreSql" Version="27.5.3" />
                    
Directory.Packages.props
<PackageReference Include="Audit.NET.PostgreSql" />
                    
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 Audit.NET.PostgreSql --version 27.5.3
                    
#r "nuget: Audit.NET.PostgreSql, 27.5.3"
                    
#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.
#addin nuget:?package=Audit.NET.PostgreSql&version=27.5.3
                    
Install Audit.NET.PostgreSql as a Cake Addin
#tool nuget:?package=Audit.NET.PostgreSql&version=27.5.3
                    
Install Audit.NET.PostgreSql as a Cake Tool

Audit.NET.PostgreSql

PostgreSQL Server provider for Audit.NET library (An extensible framework to audit executing operations in .NET).

Store the audit events in a PostgreSQL Table, in JSON format.

Install

NuGet Package To install the package run the following command on the Package Manager Console:

PM> Install-Package Audit.NET.PostgreSql

NuGet Status NuGet Count

Usage

Please see the Audit.NET Readme

Configuration

Set the static Audit.Core.Configuration.DataProvider property to set the PostgreSQL data provider, or call the UsePostgreSql method on the fluent configuration. This should be done before any AuditScope creation, i.e. during application startup.

For example:

Audit.Core.Configuration.DataProvider = new PostgreSqlDataProvider()
{
    ConnectionString = "Server=127.0.0.1;Port=5432;User Id=admin;Password=admin;Database=postgres;",
    TableName = "event",
    IdColumnName = "id",
    DataColumnName = "data",
    DataType = "JSONB",
    LastUpdatedDateColumnName = "updated_date",
    CustomColumns = new List<CustomColumn>()
    {
        new CustomColumn("event_type", ev => ev.EventType),
        new CustomColumn("user", ev => ev.Environment.UserName),
    }
};

Or by using the fluent configuration API:

Audit.Core.Configuration.Setup()
    .UsePostgreSql(config => config
        .ConnectionString("Server=127.0.0.1;Port=5432;User Id=admin;Password=admin;Database=postgres;")
        .TableName("event")
        .IdColumnName("id")
        .DataColumn("data", DataType.JSONB)
        .LastUpdatedColumnName("updated_date")
        .CustomColumn("event_type", ev => ev.EventType)
        .CustomColumn("user", ev => ev.Environment.UserName));

Provider Options

Mandatory:

  • ConnectionString: The PostgreSQL Server connection string. Defaults is Server=127.0.0.1;Port=5432;User Id=postgres;Password=admin;Database=postgres;
  • TableName: The events table name. If not specified, the default table name is event.
  • DataColumnName: The column name of the event table where the JSON will be stored. Can be set to NULL to avoid including the JSON column. If not specified, the default column name is data.
  • IdColumnName: The column name of the event identifier (the primary key). If not specified, the default column name is id.

Optional:

  • Schema: The PostgreSQL schema to use.
  • DataType: The type of the data column that stores the events. Can be JSON, JSONP or STRING. (Default is JSON).
  • LastUpdatedDateColumnName: The datetime column name to update when replacing events.
  • CustomColumn: Additional columns to store information from the audit event. (optional)

Table constraints

  • The table must exists.
  • The table must have a single ID column (Unique or Primary key).
  • The type of the ID column must be convertible to STRING.

For example:

CREATE TABLE public.event
(
    id bigserial NOT NULL,
    inserted_date timestamp without time zone NOT NULL DEFAULT now(),
    updated_date timestamp without time zone NOT NULL DEFAULT now(),
    data jsonb NOT NULL,
    event_type varchar(50),
    user varchar(50) NULL,
    CONSTRAINT event_pkey PRIMARY KEY (id)
)
WITH (
    OIDS = FALSE
)
TABLESPACE pg_default;

Query events

This provider implements GetEvent and GetEventAsync methods to obtain an audit event by id:

var event = dataProvider.GetEvent(1000);

The Postgre SQL data provider also includes basic support for querying the events collection.

Use the EnumerateEvents() method on PostgreSqlDataProvider class to run SQL-like queries against the audit events. The EnumerateEvents() method accepts any valid Postgre WHERE clause as a parameter.

For example:

IEnumerable<AuditEvent> events = postgreDataProvider.EnumerateEvents(
       "data #> '{Environment,UserName}' = '\"John\"'");

Will return the events whose property Environment.UserName is equal to 'John'.

This post contains information about the query syntax supported by JSONP data type. And here is the PostgreSQL documentation about JSON operators.

For complex querying capabilities, you should use the npgsql driver or the Npgsql EntityFramework provider directly.

ZZZ Projects - Sponsorship

Entity Framework Extensions and Dapper Plus are major sponsors and are proud to contribute to the development of Audit.NET

Combine the power of auditing with the speed of Bulk Operations to get the best of both worlds — audit and performance.

Entity Framework Extensions - Sponsor

Dapper Plus - Sponsor

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (7)

Showing the top 5 NuGet packages that depend on Audit.NET.PostgreSql:

Package Downloads
Reo.Core.AutoHistory

Package Description

Reo.Core.Database

Package Description

Reo.Core.Testing

Package Description

Reo.Core.IntegrationTesting

Package Description

Dalmarkit.AspNetCore

Dalmarkit is an opinionated .NET utility library that simplifies the building of AWS Cognito secured JSON REST APIs with audit trails using ASP.NET Core and Entity Framework Core with PostgreSQL.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
29.0.1 106 5/8/2025
29.0.0 214 5/6/2025
28.0.0 246 5/5/2025
27.5.3 632 4/23/2025
27.5.2 1,191 4/9/2025
27.5.1 241 4/4/2025
27.5.0 2,735 3/5/2025
27.4.1 1,471 2/9/2025
27.4.0 1,426 1/29/2025
27.3.3 607 1/21/2025
27.3.2 54,358 12/11/2024
27.3.1 240 12/10/2024
27.3.0 369 12/8/2024
27.2.0 9,592 11/23/2024
27.1.1 15,951 10/28/2024
27.1.0 1,062 10/24/2024
27.0.3 13,309 9/25/2024
27.0.2 6,580 9/19/2024
27.0.1 2,263 9/4/2024
27.0.0 682 9/3/2024
26.0.1 10,286 8/22/2024
26.0.0 19,863 7/19/2024
25.0.7 43,516 7/4/2024
25.0.6 3,544 6/24/2024
25.0.5 474 6/18/2024
25.0.4 164,734 3/24/2024
25.0.3 1,217 3/13/2024
25.0.2 281 3/12/2024
25.0.1 11,992 2/28/2024
25.0.0 140,780 2/16/2024
24.0.1 1,300 2/12/2024
24.0.0 172 2/12/2024
23.0.0 137,465 12/14/2023
22.1.0 10,574 12/9/2023
22.0.2 4,180 12/1/2023
22.0.1 30,946 11/16/2023
22.0.0 543 11/14/2023
21.1.0 37,821 10/9/2023
21.0.4 16,514 9/15/2023
21.0.3 37,912 7/9/2023
21.0.2 221 7/6/2023
21.0.1 34,544 5/27/2023
21.0.0 68,055 4/15/2023
20.2.4 37,853 3/27/2023
20.2.3 125,282 3/17/2023
20.2.2 7,155 3/14/2023
20.2.1 357 3/11/2023
20.2.0 713 3/7/2023
20.1.6 62,125 2/23/2023
20.1.5 2,376 2/9/2023
20.1.4 43,359 1/28/2023
20.1.3 61,711 12/21/2022
20.1.2 3,945 12/14/2022
20.1.1 7,820 12/12/2022
20.1.0 1,943 12/4/2022
20.0.4 2,344 11/30/2022
20.0.3 5,304 10/28/2022
20.0.2 662 10/26/2022
20.0.1 3,117 10/21/2022
20.0.0 4,490 10/1/2022
19.4.1 8,253 9/10/2022
19.4.0 1,548 9/2/2022
19.3.0 2,978 8/23/2022
19.2.2 4,370 8/11/2022
19.2.1 643 8/6/2022
19.2.0 1,946 7/24/2022
19.1.4 12,704 5/23/2022
19.1.3 557 5/22/2022
19.1.2 1,489 5/18/2022
19.1.1 38,423 4/28/2022
19.1.0 55,056 4/10/2022
19.0.7 27,039 3/13/2022
19.0.6 1,306 3/7/2022
19.0.5 24,781 1/28/2022
19.0.4 1,107 1/23/2022
19.0.3 21,425 12/14/2021
19.0.2 1,703 12/11/2021
19.0.1 2,108 11/20/2021
19.0.0 2,455 11/11/2021
19.0.0-rc.net60.2 1,128 9/26/2021
19.0.0-rc.net60.1 268 9/16/2021
18.1.6 780,016 9/26/2021
18.1.5 42,075 9/7/2021
18.1.4 32,863 9/6/2021
18.1.3 5,320 8/19/2021
18.1.2 1,280 8/8/2021
18.1.1 517 8/5/2021
18.1.0 965 8/1/2021
18.0.1 549 7/30/2021
18.0.0 751 7/26/2021
17.0.8 16,757 7/7/2021
17.0.7 780 6/16/2021
17.0.6 660 6/5/2021
17.0.5 982 5/28/2021
17.0.4 3,180 5/4/2021
17.0.3 565 5/1/2021
17.0.2 9,064 4/22/2021
17.0.1 545 4/18/2021
17.0.0 1,027 3/26/2021
16.5.6 574 3/25/2021
16.5.5 6,552 3/23/2021
16.5.4 783 3/9/2021
16.5.3 567 2/26/2021
16.5.2 552 2/23/2021
16.5.1 3,496 2/21/2021
16.5.0 7,412 2/17/2021
16.4.5 555 2/15/2021
16.4.4 974 2/5/2021
16.4.3 558 1/27/2021
16.4.2 4,411 1/22/2021
16.4.1 605 1/21/2021
16.4.0 1,261 1/11/2021
16.3.3 612 1/8/2021
16.3.2 618 1/3/2021
16.3.1 626 12/31/2020
16.3.0 584 12/30/2020
16.2.1 4,940 12/27/2020
16.2.0 18,241 10/13/2020
16.1.5 729 10/4/2020
16.1.4 5,642 9/17/2020
16.1.3 1,760 9/13/2020
16.1.2 636 9/9/2020
16.1.1 1,207 9/3/2020
16.1.0 721 8/19/2020
16.0.3 760 8/15/2020
16.0.2 13,602 8/9/2020
16.0.1 675 8/8/2020
16.0.0 1,828 8/7/2020
15.3.0 291,497 7/23/2020
15.2.3 2,868 7/14/2020
15.2.2 51,209 5/19/2020
15.2.1 3,762 5/12/2020
15.2.0 710 5/9/2020
15.1.1 688 5/4/2020
15.1.0 3,048 4/13/2020
15.0.5 819 3/18/2020
15.0.4 740 2/28/2020
15.0.3 644 2/26/2020
15.0.2 5,042 1/20/2020
15.0.1 776 1/10/2020
15.0.0 766 12/17/2019
14.9.1 767 11/30/2019
14.9.0 721 11/29/2019
14.8.1 719 11/26/2019
14.8.0 903 11/20/2019
14.7.0 1,015 10/9/2019
14.6.6 727 10/8/2019
14.6.5 40,439 9/27/2019
14.6.4 681 9/21/2019
14.6.3 5,454 8/12/2019
14.6.2 834 8/3/2019
14.6.1 754 8/3/2019
14.6.0 775 7/26/2019
14.5.7 787 7/18/2019
14.5.6 1,113 7/10/2019
14.5.5 751 7/1/2019
14.5.4 750 6/17/2019
14.5.3 808 6/5/2019
14.5.2 783 5/30/2019
14.5.1 7,513 5/28/2019
14.5.0 3,450 5/24/2019
14.4.0 818 5/22/2019
14.3.4 2,262 5/14/2019
14.3.3 771 5/9/2019
14.3.2 933 4/30/2019
14.3.1 802 4/27/2019
14.3.0 5,745 4/24/2019
14.2.3 915 4/17/2019
14.2.2 791 4/10/2019
14.2.1 16,054 4/5/2019
14.2.0 821 3/16/2019
14.1.1 805 3/8/2019
14.1.0 2,134 2/11/2019
14.0.4 2,825 1/31/2019
14.0.3 5,933 1/22/2019
14.0.2 1,472 12/15/2018
14.0.1 966 11/29/2018
14.0.0 984 11/19/2018
13.3.0 1,017 11/16/2018
13.2.2 980 11/15/2018
13.2.1 2,933 11/13/2018
13.2.0 1,065 10/31/2018
13.1.5 993 10/31/2018
13.1.4 1,024 10/25/2018
13.1.3 1,012 10/18/2018
13.1.2 1,174 9/12/2018
13.1.1 1,063 9/11/2018
13.1.0 1,051 9/11/2018
13.0.0 1,118 8/29/2018
12.3.6 1,088 8/29/2018
12.3.5 1,111 8/22/2018
12.3.4 1,499 8/21/2018
12.3.3 25,866 8/21/2018
12.3.2 1,109 8/20/2018
12.3.1 1,119 8/20/2018
12.3.0 1,113 8/20/2018
12.2.2 1,150 8/15/2018
12.2.1 1,132 8/9/2018
12.2.0 1,101 8/8/2018
12.1.11 1,117 7/30/2018
12.1.10 1,196 7/20/2018
12.1.9 1,280 7/10/2018
12.1.8 1,135 7/2/2018
12.1.7 1,344 6/7/2018
12.1.6 1,308 6/4/2018
12.1.5 1,285 6/2/2018
12.1.4 1,356 5/25/2018
12.1.3 1,401 5/16/2018
12.1.2 1,197 5/15/2018
12.1.1 1,380 5/14/2018
12.1.0 1,455 5/9/2018
12.0.7 1,415 5/5/2018
12.0.6 1,413 5/4/2018
12.0.5 1,364 5/3/2018
12.0.4 1,348 4/30/2018
12.0.3 1,399 4/30/2018
12.0.2 1,303 4/27/2018
12.0.1 1,381 4/25/2018
12.0.0 1,246 4/22/2018
11.2.0 1,230 4/11/2018
11.1.0 1,364 4/8/2018
11.0.8 1,336 3/26/2018
11.0.7 1,332 3/20/2018
11.0.6 1,326 3/7/2018
11.0.5 1,221 2/22/2018
11.0.4 1,385 2/14/2018
11.0.3 1,312 2/12/2018
11.0.2 1,308 2/9/2018
11.0.1 1,216 1/29/2018
11.0.0 1,309 1/15/2018
10.0.3 1,212 12/29/2017
10.0.2 1,307 12/26/2017
10.0.1 1,327 12/18/2017
10.0.0 1,181 12/18/2017
9.3.0 1,342 12/17/2017
9.2.0 1,302 12/17/2017
9.1.3 1,280 12/5/2017
9.1.2 1,238 11/27/2017
9.1.1 1,246 11/21/2017
9.1.0 1,206 11/21/2017
9.0.1 1,205 11/11/2017
9.0.0 1,253 11/10/2017
8.7.0 1,266 11/9/2017
8.6.0 1,261 11/9/2017
8.5.0 1,272 10/3/2017
8.4.0 1,397 10/3/2017