DuckDbConfiguration

A class that is being used to initialize the necessary settings for the DuckDBConnection object.

This class exposes the UseDuckDb() extension method of GlobalConfiguration, which wires up all the necessary dependencies for DuckDB (via DuckDbBootstrap).

Usability

GlobalConfiguration
    .Setup()
    .UseDuckDb();

Call this once during application start-up, before opening any DuckDBConnection.