Devart.Data.Oracle 11.0.0

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

dotConnect for Oracle

dotConnect for Oracle is a high-performance ORM enabled data provider for Oracle and Oracle Cloud (DBaaS) that builds on ADO.NET technology.

The provider works with .NET Frameworks 2.0+, .NET Core 1.0+, .NET 5+.

Direct Connection to Oracle

Direct Connection

It supports a wide range of Oracle-specific features, including different connection modes/protocols, data types, and optimized components for bulk data operations and database script handling. In Direct mode does not require Oracle Client Software and works directly through TCP/IP. Package provides advanced Visual Studio integration and convenient visual component editors to simplify component tweaking.

More information at dotConnect for Oracle.

Compatibility


The following table show which version of this package to use with which version of frameworks.

Frameworks Version support
.NET 9, 8, 7, 6, 5
.NET Core 3, 2, 1
.NET Framework 4.8, 4.7, 4.6

More information here

Installation


For projects, using general ADO.NET functionality of dotConnect for Oracle, you need to install this package. Execute the following command in the Package Manager Console:

Install-Package Devart.Data.Oracle

For projects, using Entity Framework Core 1, 3, 5, 6, 7, 8, 9 with Oracle, install the Devart.Data.Oracle.EFCore package.

For projects that require integration with Entity Framework 6.4 (EF6), use the Devart.Data.Oracle.EF6 package.

License

dotConnect for Oracle is available in several editions. See pricing options for ordering.

The NuGet package initiates the retrieval of an activation key from the Devart website. This key is required to activate the product for a free trial.

Usage


In this example, a new instance of the OracleConnection class (part of the Devart.Data.Oracle namespace) is created.

using Devart.Data.Oracle;
...
OracleConnectionStringBuilder oraCSB = new OracleConnectionStringBuilder();
oraCSB.Direct = true;
oraCSB.Server = "127.0.0.1";
oraCSB.Port = 1521;
oraCSB.ServiceName = "orcl";
oraCSB.UserId = "demo";
oraCSB.Password = "test";
OracleConnection myConnection = new OracleConnection(oraCSB.ConnectionString);
myConnection.Open();

This snippet simplifies the connection setup by directly assigning a connection string to the ConnectionString property of the OracleConnection object

connection.ConnectionString = "UserId=demo;Password=test;Server=127.0.0.1;";
ASP.NET Core and Blazor

Configuration File Snippet (appsettings.json):

{
  "ConnectionStrings": {
    "DefaultConnection": "UserId=demo;Password=test;Server=127.0.0.1;Port=1521;"
   }
}

Dependency Injection of IConfiguration:

private readonly IConfiguration configuration;

public YourController(IConfiguration config) 
{
    configuration = config;
}

Retrieving a Connection String:

var connectionString = configuration.GetConnectionString("DefaultConnection");
var connection = new OracleConnection(connectionString);

For more information about secure connections using SSL or SSH connections and other connections types read at our documentation.

Key Features

  • Direct Mode: Allows your application to work with Oracle directly, without involving Oracle client library.
  • ASP.NET Core: Supports ASP.NET Core Identity.
  • Performance: Uses many Oracle-specific performance features & optimizations to ensure the highest performance.
  • Monitoring: Allows per-component tracing of database events with a free dbMonitor application.
  • Security: Supports various encryption ciphers, SSL and SSH connections, etc.
  • Support and updates: Enjoy dedicated support team for prompt issue resolution and regular updates to keep your software running smoothly and securely.

Support Area

More Resources

Explore additional resources about dotConnect for Oracle:

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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.  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 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 was computed.  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 (14)

Showing the top 5 NuGet packages that depend on Devart.Data.Oracle:

Package Downloads
Devart.Data.Oracle.EFCore

dotConnect for Oracle is a high-performance ORM enabled data provider for Oracle and Oracle Cloud (DBaaS) that builds on ADO.NET technology. The provider works with .NET Frameworks 2.0+, .NET Core 1.0+, .NET 5+. It supports a wide range of Oracle-specific features, including different connection modes/protocols, data types, and optimized components for bulk data operations and database script handling. In Direct mode does not require Oracle Client Software and works directly through TCP/IP. Package provides advanced Visual Studio integration and convenient visual component editors to simplify component tweaking. More information at https://www.devart.com/dotconnect/oracle/ Key Features * Direct Mode: Allows your application to work with Oracle directly, without involving Oracle client library. * ASP.NET Core: Supports ASP.NET Core Identity. * Performance: Uses many Oracle-specific performance features & optimizations to ensure the highest performance. * Monitoring: Allows per-component tracing of database events with a free dbMonitor application. * Security: Supports various encryption ciphers, SSL and SSH connections, etc. * Support and updates: Enjoy dedicated support team for prompt issue resolution and regular updates to keep your software running smoothly and securely. License dotConnect for Oracle is available in several editions. The NuGet package initiates the retrieval of an activation key from the Devart website. This key is required to activate the product for a free trial.

Devart.Data.Oracle.Linq

dotConnect for Oracle is an enhanced database connectivity solution built over ADO.NET architecture and a development framework with advanced support for ORMs, such as Entity Framework and LinqConnect and offers a complete solution for developing DB-related applications and web sites. It introduces new approaches for designing a data access layer and boosts the productivity of database application development. This package contains the .NET Standard/.NET Core compatible assemblies with LinqConnect-related functionality of dotConnect for Oracle. LinqConnect (LINQ to Oracle) is a fast ORM solution, having a LINQ to SQL-compatible interface, but also providing its own advanced features. This package contains only runtime features of dotConnect for Oracle. dotConnect for Oracle is also provided as an installation package (exe), which installs runtime assemblies for Full .NET Framework and a set of design-time tools, integrated into Visual Studio - Server Explorer integration, DataSet tools, Windows Forms components with powerful design-time, etc. It also includes visual ORM designer for Entity Framework, Entity Framework Core, and LinqConnect ORM models. You can download it at www.devart.com. The NuGet package initiates the retrieval of an activation key from the Devart website. This key is required to activate the product for a free trial.

Devart.Data.Oracle.EF6

dotConnect for Oracle is a high-performance ORM enabled data provider for Oracle and Oracle Cloud (DBaaS) that builds on ADO.NET technology. The provider works with .NET Frameworks 2.0+, .NET Core 1.0+, .NET 5+. It supports a wide range of Oracle-specific features, including different connection modes/protocols, data types, and optimized components for bulk data operations and database script handling. In Direct mode does not require Oracle Client Software and works directly through TCP/IP. Package provides advanced Visual Studio integration and convenient visual component editors to simplify component tweaking. More information at https://www.devart.com/dotconnect/oracle/ Key Features * Direct Mode: Allows your application to work with Oracle directly, without involving Oracle client library. * ASP.NET Core: Supports ASP.NET Core Identity. * Performance: Uses many Oracle-specific performance features & optimizations to ensure the highest performance. * Monitoring: Allows per-component tracing of database events with a free dbMonitor application. * Security: Supports various encryption ciphers, SSL and SSH connections, etc. * Support and updates: Enjoy dedicated support team for prompt issue resolution and regular updates to keep your software running smoothly and securely. License dotConnect for Oracle is available in several editions. The NuGet package initiates the retrieval of an activation key from the Devart website. This key is required to activate the product for a free trial.

Rebus.Oracle.Devart

Rebus.Oracle.Devart

NewenNetworks.Database.Oracle

NewenNetworks Standard SDK

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Devart.Data.Oracle:

Repository Stars
linq2db/linq2db
Linq to database provider.
Version Downloads Last Updated
11.0.0 1,106 12/19/2025
10.4.290 54,834 7/30/2025
10.4.235 72,355 4/25/2025
10.4.193 50,008 2/11/2025
10.4.191 12,719 1/15/2025
10.4.190 13,716 12/27/2024
10.3.104 100,340 11/8/2024
10.3.21 127,255 6/6/2024
10.3.20 35,545 5/30/2024
10.3.10 169,214 1/18/2024
10.2.0 200,462 11/17/2023
10.1.151 162,058 6/7/2023
10.1.134 80,852 3/4/2023
10.0.0 404,496 7/1/2022
9.16.1434 372,865 1/26/2022
9.15.1410 46,542 12/21/2021
9.14.1382 101,981 11/9/2021
9.14.1369 56,910 10/21/2021
9.14.1353 19,096 9/28/2021
9.14.1312 73,110 7/30/2021
9.14.1298 16,332 7/8/2021
9.14.1273 36,035 6/3/2021
9.14.1234 87,983 4/9/2021
9.14.1228 12,079 4/1/2021
9.14.1204 41,267 2/18/2021
9.14.1180 30,804 1/14/2021
9.14.1160 55,352 12/17/2020
9.14.1150 47,380 12/3/2020
9.13.1127 421,001 10/29/2020
9.13.1107 22,335 10/1/2020
9.13.1098 21,937 9/17/2020
9.12.1064 167,426 7/30/2020
9.12.1054 6,780 7/16/2020
9.11.1034 51,505 6/17/2020
9.11.980 447,003 4/2/2020
9.11.951 53,040 2/20/2020
9.10.909 69,267 12/23/2019
9.9.887 22,956 11/21/2019
9.9.872 25,856 10/31/2019
9.9.867 77,925 10/24/2019
9.8.838 55,550 9/13/2019
9.7.805 63,001 7/25/2019
9.7.790 49,307 7/4/2019
9.7.770 44,947 6/6/2019
9.7.734 210,787 4/12/2019
9.6.725 24,968 3/28/2019
9.6.696 114,129 2/14/2019
9.6.675 43,135 1/10/2019
9.6.646 27,509 11/29/2018
9.6.621 41,615 10/25/2018
9.6.597 61,777 9/20/2018
9.6.584 14,928 8/31/2018
9.6.570 12,734 8/10/2018
9.6.558 16,046 7/19/2018
9.6.540 16,778 6/22/2018
9.5.520 22,518 5/25/2018
9.5.502 14,011 4/27/2018
9.5.483 7,305 3/30/2018
9.5.454 161,915 2/15/2018
9.5.429 12,798 1/11/2018
9.5.399 13,316 11/23/2017
9.5.381 7,353 10/30/2017
9.4.348 9,858 9/7/2017
9.4.326 7,446 8/4/2017
9.4.314 8,189 7/14/2017
9.4.299 4,691 6/23/2017
9.4.280 11,570 5/25/2017