Devart.Data.Oracle.EFCore 11.1.35

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Devart.Data.Oracle.EFCore --version 11.1.35
                    
NuGet\Install-Package Devart.Data.Oracle.EFCore -Version 11.1.35
                    
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.EFCore" Version="11.1.35" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Devart.Data.Oracle.EFCore" Version="11.1.35" />
                    
Directory.Packages.props
<PackageReference Include="Devart.Data.Oracle.EFCore" />
                    
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.EFCore --version 11.1.35
                    
#r "nuget: Devart.Data.Oracle.EFCore, 11.1.35"
                    
#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.EFCore@11.1.35
                    
#: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.EFCore&version=11.1.35
                    
Install as a Cake Addin
#tool nuget:?package=Devart.Data.Oracle.EFCore&version=11.1.35
                    
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 2.0+, .NET 5+. The product is compatible with ADO.NET Entity Framework (EF) Core.

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.

Visual ORM Designer

ORM Support

It also includes visual ORM designer for Entity Framework, Entity Framework Core, and LinqConnect ORM models.

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
Entity Framework Core 6, 5, 3
.NET 10, 9, 8, 7, 6, 5
.NET Core 3, 2
.NET Framework 4.8, 4.7, 4.6.2, 4.6.1

More information here

Installation


For projects, using Entity Framework Core 3, 5, 6 with Oracle, install this package. Execute the following command in the Package Manager Console:

Install-Package Devart.Data.Oracle.EFCore

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

There also are Visual Studio extensions for earlier Visual Studio versions. If you use some other tool than Visual Studio, you can get NuGet packages with the nuget.exe console tool.

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


This snippet directly configures a Oracle database connection for an Entity Framework Core DbContext using a connection string.

public class MyDbContext : DbContext {
 
  protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) {

     optionsBuilder.UseOracle(@"UserId=demo;Password=test;ServiceName=orcl;Server=127.0.0.1;Port=1521;");
  } 
}

Configuration Using OracleConnection Instance

using Devart.Data.Oracle;
...

public class MyDbContext : DbContext {
 
  protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) {

     var connection = new OracleConnection();
     connection.Direct = true;
     connection.Host = "127.0.0.1";
     connection.ServiceName = "orcl";
     connection.Port = 1521;
     connection.UserId = "demo";
     connection.Password = "test";
     optionsBuilder.UseOracle(connection);
  } 
}

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 is compatible.  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 (28)

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

Package Downloads
Devart.Data.Oracle.EFCore.Design

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 a 30-day free trial automatically, so no additional action is required.

Volo.Abp.EntityFrameworkCore.Oracle.Devart

Package Description

Aguacongas.TheIdServer.Migrations.Oracle

Contains db contexts migrations code for Oracle.

Devart.Data.Oracle.EFCore.NetTopologySuite

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 2.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.

Eltra.EntityFramework

Library for Eltra .Net

GitHub repositories (3)

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

Repository Stars
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
besley/Slickflow
.NET Open Source Workflow Engine, AI Empowerment
Aguafrommars/TheIdServer
OpenID/Connect, OAuth2, WS-Federation and SAML 2.0 server based on Duende IdentityServer and ITFoxtec Identity SAML 2.0 with its admin UI
Version Downloads Last Updated
11.1.35.10 653 3/6/2026
11.1.35.9 127 3/6/2026
11.1.35.8 117 3/6/2026
11.1.35.7 120 3/6/2026
11.1.35 138 3/6/2026
11.1.33.10 1,489 2/24/2026
11.1.33.9 286 2/24/2026
11.1.33.8 140 2/24/2026
11.1.33.7 148 2/24/2026
11.1.33 180 2/24/2026
11.0.0.9 7,271 12/19/2025
11.0.0.8 1,582 12/19/2025
11.0.0.7 410 12/19/2025
11.0.0 789 12/19/2025
10.4.290.9 13,851 7/30/2025
10.4.290.8 3,114 7/30/2025
10.4.290.7 445 7/30/2025
10.4.290 2,661 7/30/2025
10.4.235.9 24,298 4/25/2025
10.4.235 1,657 4/25/2025
Loading failed