Devart.Data.Oracle.EFCore
10.4.190.9
Prefix Reserved
dotnet add package Devart.Data.Oracle.EFCore --version 10.4.190.9
NuGet\Install-Package Devart.Data.Oracle.EFCore -Version 10.4.190.9
<PackageReference Include="Devart.Data.Oracle.EFCore" Version="10.4.190.9" />
paket add Devart.Data.Oracle.EFCore --version 10.4.190.9
#r "nuget: Devart.Data.Oracle.EFCore, 10.4.190.9"
// Install Devart.Data.Oracle.EFCore as a Cake Addin #addin nuget:?package=Devart.Data.Oracle.EFCore&version=10.4.190.9 // Install Devart.Data.Oracle.EFCore as a Cake Tool #tool nuget:?package=Devart.Data.Oracle.EFCore&version=10.4.190.9
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+. The product is compatible with ADO.NET Entity Framework (EF) Core.
Direct Connection to Oracle
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
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 | 9 |
.NET | 9, 8 |
More information here
Installation
For projects, using Entity Framework Core 9 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.
To activate your license, please download dotConnect for Oracle from our website. This installer generates the trial key files required for using this package on a trial basis.
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.
Related Packages
Support Area
More Resources
Explore additional resources about dotConnect for Oracle:
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. |
-
net8.0
- Devart.Data.Oracle (>= 10.4.190)
- Microsoft.EntityFrameworkCore.Relational (>= 9.0.0 && < 10.0.0)
NuGet packages (27)
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. To activate your license, please download dotConnect for Oracle from our website. This installer generates the trial key files required for using this package on a trial basis. |
|
Volo.Abp.EntityFrameworkCore.Oracle.Devart
Package Description |
|
Aguacongas.TheIdServer.Migrations.Oracle
Contains db contexts migrations code for Oracle. |
|
Eltra.EntityFramework
Library for Eltra .Net |
|
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 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. To activate your license, please download dotConnect for Oracle from our website. This installer generates the trial key files required for using this package on a trial basis. |
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, .NET 开源工作流
|
|
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 |
---|---|---|
10.4.190.9 | 323 | 12/27/2024 |
10.4.190.8 | 83 | 12/27/2024 |
10.4.190.7 | 92 | 12/27/2024 |
10.4.190 | 138 | 12/27/2024 |
10.3.105.8 | 3,878 | 11/13/2024 |
10.3.105.7 | 206 | 11/13/2024 |
10.3.105 | 298 | 11/13/2024 |
10.3.104.8 | 1,794 | 11/8/2024 |
10.3.104.7 | 175 | 11/8/2024 |
10.3.104 | 848 | 11/8/2024 |
10.3.21.8 | 23,636 | 6/6/2024 |
10.3.21.7 | 252 | 6/6/2024 |
10.3.21 | 610 | 6/6/2024 |
10.3.20.8 | 10,157 | 5/30/2024 |
10.3.20.7 | 155 | 5/30/2024 |
10.3.20 | 260 | 5/30/2024 |
10.3.10.8 | 40,828 | 1/18/2024 |
10.3.10.7 | 1,457 | 1/18/2024 |
10.3.10 | 3,401 | 1/18/2024 |
10.2.0.7 | 88,016 | 11/17/2023 |
10.2.0 | 1,334 | 11/17/2023 |
10.1.151.7 | 67,378 | 6/7/2023 |
10.1.151 | 2,854 | 6/7/2023 |
10.1.134.7 | 22,310 | 3/4/2023 |
10.1.134 | 7,909 | 3/4/2023 |
10.0.0 | 255,106 | 7/1/2022 |
9.16.1434 | 222,398 | 1/26/2022 |
9.15.1410 | 27,793 | 12/21/2021 |
9.14.1382 | 48,840 | 11/9/2021 |
9.14.1369 | 12,174 | 10/21/2021 |
9.14.1353 | 7,344 | 9/28/2021 |
9.14.1312 | 15,791 | 7/30/2021 |
9.14.1298 | 3,816 | 7/8/2021 |
9.14.1273 | 19,287 | 6/3/2021 |
9.14.1234 | 33,605 | 4/9/2021 |
9.14.1228 | 7,011 | 4/1/2021 |
9.14.1204 | 22,632 | 2/18/2021 |
9.14.1180 | 11,216 | 1/14/2021 |
9.14.1160 | 7,994 | 12/17/2020 |
9.14.1150 | 19,850 | 12/3/2020 |
9.13.1127 | 343,183 | 10/29/2020 |
9.13.1107 | 14,983 | 10/1/2020 |
9.13.1098 | 6,221 | 9/17/2020 |
9.12.1064 | 140,170 | 7/30/2020 |
9.12.1054 | 3,645 | 7/16/2020 |
9.11.1034 | 34,240 | 6/17/2020 |
9.11.980 | 251,159 | 4/2/2020 |
9.11.951 | 32,241 | 2/20/2020 |
9.10.909 | 35,645 | 12/23/2019 |
9.9.887 | 14,329 | 11/21/2019 |
9.9.872 | 7,515 | 10/31/2019 |
9.9.867 | 73,906 | 10/24/2019 |
9.8.838 | 27,792 | 9/13/2019 |
9.7.805 | 47,810 | 7/25/2019 |
9.7.790 | 8,932 | 7/4/2019 |
9.7.770 | 35,232 | 6/6/2019 |
9.7.734 | 196,003 | 4/12/2019 |
9.6.725 | 20,104 | 3/28/2019 |
9.6.696 | 90,127 | 2/14/2019 |
9.6.675 | 38,164 | 1/10/2019 |
9.6.646 | 22,967 | 11/29/2018 |
9.6.621 | 13,798 | 10/25/2018 |
9.6.597 | 50,048 | 9/20/2018 |
9.6.584 | 7,712 | 8/31/2018 |
9.6.570 | 9,362 | 8/10/2018 |
9.6.558 | 5,769 | 7/19/2018 |
9.6.540 | 7,451 | 6/22/2018 |
9.5.520 | 12,114 | 5/25/2018 |
9.5.502 | 10,825 | 4/27/2018 |
9.5.483 | 3,992 | 3/30/2018 |
9.5.454 | 7,542 | 2/15/2018 |
9.5.429 | 6,375 | 1/11/2018 |
9.5.399 | 8,738 | 11/23/2017 |
9.5.381 | 2,868 | 10/30/2017 |
9.4.348 | 4,108 | 9/7/2017 |
9.4.326 | 3,214 | 8/4/2017 |
9.4.314 | 2,788 | 7/14/2017 |
9.4.299 | 2,607 | 6/23/2017 |
9.4.280 | 3,641 | 5/25/2017 |