AmpScm.RepoDb.Oracle
1.14.2506.30251
See the version list below for details.
dotnet add package AmpScm.RepoDb.Oracle --version 1.14.2506.30251
NuGet\Install-Package AmpScm.RepoDb.Oracle -Version 1.14.2506.30251
<PackageReference Include="AmpScm.RepoDb.Oracle" Version="1.14.2506.30251" />
<PackageVersion Include="AmpScm.RepoDb.Oracle" Version="1.14.2506.30251" />
<PackageReference Include="AmpScm.RepoDb.Oracle" />
paket add AmpScm.RepoDb.Oracle --version 1.14.2506.30251
#r "nuget: AmpScm.RepoDb.Oracle, 1.14.2506.30251"
#:package AmpScm.RepoDb.Oracle@1.14.2506.30251
#addin nuget:?package=AmpScm.RepoDb.Oracle&version=1.14.2506.30251
#tool nuget:?package=AmpScm.RepoDb.Oracle&version=1.14.2506.30251
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
- GitHub - for any issues, requests and problems.
- StackOverflow - for any technical questions.
- Twitter - for the latest news.
- Gitter Chat - for direct and live Q&A.
Dependencies
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 | Versions 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. |
-
.NETFramework 4.8
- AmpScm.RepoDb (>= 1.14.2506.30251)
- Microsoft.Bcl.AsyncInterfaces (>= 9.0.5)
- Microsoft.Bcl.HashCode (>= 6.0.0)
- Oracle.ManagedDataAccess (>= 23.8.0)
- System.ComponentModel.Annotations (>= 5.0.0)
- System.Dynamic.Runtime (>= 4.3.0)
- System.Memory (>= 4.6.3)
- System.Text.Json (>= 9.0.4)
-
net8.0
- AmpScm.RepoDb (>= 1.14.2506.30251)
- Oracle.ManagedDataAccess.Core (>= 23.8.0)
- System.Memory (>= 4.6.3)
-
net9.0
- AmpScm.RepoDb (>= 1.14.2506.30251)
- Oracle.ManagedDataAccess.Core (>= 23.8.0)
- System.Memory (>= 4.6.3)
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 |