Excalibur.Inbox.Oracle 10.0.0-alpha.11

This is a prerelease version of Excalibur.Inbox.Oracle.
dotnet add package Excalibur.Inbox.Oracle --version 10.0.0-alpha.11
                    
NuGet\Install-Package Excalibur.Inbox.Oracle -Version 10.0.0-alpha.11
                    
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="Excalibur.Inbox.Oracle" Version="10.0.0-alpha.11" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Excalibur.Inbox.Oracle" Version="10.0.0-alpha.11" />
                    
Directory.Packages.props
<PackageReference Include="Excalibur.Inbox.Oracle" />
                    
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 Excalibur.Inbox.Oracle --version 10.0.0-alpha.11
                    
#r "nuget: Excalibur.Inbox.Oracle, 10.0.0-alpha.11"
                    
#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 Excalibur.Inbox.Oracle@10.0.0-alpha.11
                    
#: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=Excalibur.Inbox.Oracle&version=10.0.0-alpha.11&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Excalibur.Inbox.Oracle&version=10.0.0-alpha.11&prerelease
                    
Install as a Cake Tool

Excalibur.Inbox.Oracle

Oracle Database implementation of the inbox pattern for idempotent message processing.

Part Of

The Excalibur application framework — messaging durability providers. Sibling of Excalibur.Inbox.SqlServer and Excalibur.Inbox.Postgres.

Usage

services.AddOracleInboxStore(options =>
{
    options.ConnectionString = "User Id=app;Password=***;Data Source=localhost:1521/FREEPDB1";
    options.TableName = "INBOX_MESSAGES";
});

The store does not create its table; provision INBOX_MESSAGES with the columns the store's requests reference (a composite primary key of MessageId, HandlerType).

Oracle specifics

  • Paging uses ANSI OFFSET ... ROWS FETCH NEXT ... ROWS ONLY (Oracle 12c+).
  • First-writer-wins deduplication is an INSERT guarded by the unique key (ORA-00001 ⇒ duplicate).
  • Concurrent processors of the same key are serialized with SELECT ... FOR UPDATE.
  • Identity/OCC columns are normalized so Oracle's '' → NULL fold cannot defeat a NOT-NULL assertion.

Driver license

This package depends on Oracle.ManagedDataAccess.Core, Oracle's own ODP.NET Core driver. It is not distributed under an OSI-approved open-source license. Its LICENSE.txt opens:

Your use of this Program is governed by the Oracle Free Distribution, Hosting, and Use Terms and Conditions set forth below, unless you have received this Program (alone or as part of another Oracle product) under an Oracle license agreement (including but not limited to the Oracle Master Agreement), in which case your use of this Program is governed solely by such license agreement with Oracle.

Excalibur redistributes no Oracle software and asserts nothing about your eligibility on your behalf. Referencing this package makes NuGet install the driver into your application, so the obligations are yours. Read the terms shipped in the driver package before you deploy, and confirm your deployment is covered -- the free terms carry conditions that the MIT and PostgreSQL licenses of Excalibur's other database drivers do not.

If those terms do not suit you, no other Excalibur provider carries them: the SQL Server, MySQL and SQLite drivers are MIT and Npgsql is the PostgreSQL license. Every dependency's license is listed in THIRD-PARTY-NOTICES.md in the repository.

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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.0.0-alpha.11 29 9/15/2026
10.0.0-alpha.10 62 9/6/2026
10.0.0-alpha.9 57 8/31/2026
10.0.0-alpha.8 75 8/14/2026
10.0.0-alpha.7 71 8/13/2026
10.0.0-alpha.6 69 8/11/2026
10.0.0-alpha.5 63 8/10/2026
10.0.0-alpha.4 66 8/10/2026