AmpScm.RepoDb.Oracle 1.14.2506.10222

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

MSBuild-CI Version GitterChat

RepoDb.Oracle - a hybrid .NET ORM library for Oracle.

RepoDB is an open-source .NET ORM library that bridges the gaps of micro-ORMs and full-ORMs. It helps you simplify the switch-over of when to use the BASIC and ADVANCE operations during the development.

Important Pages

  • GitHub Home Page - to learn more about the core library.
  • Website - docs, features, classes, references, releases and blogs.

Community Engagements

Dependencies

  • Npgsql - the data provider used for Oracle.
  • RepoDb - the core library of RepoDB.

License

Apache-2.0 - Copyright © 2025 - now - Bert Huijben


Installation

At the Package Manager Console, write the command below.

> Install-Package AmpScm.RepoDb.Oracle

Or, visit our installation page for more information.

Get Started

First, RepoDB must be configured and Oracle support loaded.

GlobalConfiguration.Setup().UseOracle();

Note: The call must be done once.

After the bootstrap initialization, any library operation can then be called.

Or, visit the official get-started page for Oracle.

Query

using (var connection = new OracleConnection(ConnectionString))
{
	var customer = connection.Query<Customer>(c => c.Id == 10045);
}

Insert

var customer = new Customer
{
	FirstName = "John",
	LastName = "Doe",
	IsActive = true
};
using (var connection = new OracleConnection(ConnectionString))
{
	var id = connection.Insert<Customer>(customer);
}

Update

using (var connection = new OracleConnection(ConnectionString))
{
	var customer = connection.Query<Customer>(10045);
	customer.FirstName = "John";
	customer.LastUpdatedUtc = DateTime.UtcNow;
	var affectedRows = connection.Update<Customer>(customer);
}

Delete

using (var connection = new OracleConnection(ConnectionString))
{
	var customer = connection.Query<Customer>(10045);
	var deletedCount = connection.Delete<Customer>(customer);
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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 is compatible.  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.  net10.0 was computed.  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. 
.NET Framework net48 is compatible.  net481 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
1.14.2508.12328 138 8/12/2025
1.14.2508.4318 161 8/4/2025
1.14.2507.18312 91 7/18/2025
1.14.2507.18302 107 7/18/2025
1.14.2507.17297 133 7/17/2025
1.14.2507.4263 75 7/4/2025
1.14.2507.2257 140 7/2/2025
1.14.2506.30251 141 6/30/2025
1.14.2506.18235 152 6/18/2025
1.14.2506.18231 154 6/18/2025
1.14.2506.10222 290 6/12/2025
1.14.2506.4209 147 6/4/2025
1.14.2505.23170 103 5/23/2025