dotConnect for Oracle Documentation
In This Topic
    Entity Framework Support
    In This Topic

    The latest ADO.NET evolution focuses on raising the level of abstraction from the logical (relational) level to the conceptual (entity) level. For this purpose Microsoft introduces the Entity Framework, designed to simplify data - object conversion and embed data access queries into program code.

    dotConnect for Oracle fully supports ADO.NET Entity Framework, including Entity Framework Core.

    The article consists of the following sections:

    What is ADO.NET Entity Framework?

    The Entity Framework is a set of technologies in ADO.NET that support development of data-oriented software applications. The Entity Framework is designed to enable developers to create data access applications by programming against a conceptual application model instead of programming directly against a relational storage schema. The goal is to decrease the amount of code and maintenance required for data-oriented applications. Entity Framework applications provide the following benefits:

    Entity Framework Support Key Features

    Using the Entity Data Provider

    dotConnect for Oracle allows using it in Entity Framework models in various ways. You can use our provider with standard Visual Studio Entity Framework tools, in the same way as SqlClient.

    For example, you can create an Entity Framework model, using database-first approach (for Entity Framework v1 - v6) in the following way:

    1. Open your project.
    2. Add new item ADO.NET Entity Data Model to your project and specify its name.
    3. Choose Generate from database.
    4. Choose the dotConnect you use as data provider and specify the connection string.
    5. Select tables that are actually used in your project and click Generate to finish the process. If the selected tables contain foreign keys, they will be reflected in the generated models as well.
    6. Specify a name for the model namespace. Note that this name should be different from the database (schema) name.

    dotConnect for Oracle also provides advanced ORM designer and code generation tool - Entity Developer. It allows creating Entity Framework v1 and Entity Framework Core models using database-first, model-first, or mixed approaches and generating code for them.

    For your convenience there is a brief Entity Framework Tutorial that you can use to get acquainted with the technology. You can also take a look at Entity Framework samples available with the product, or download separate Entity Framework Query Samples package. The latter is a standard Microsoft demo with added Oracle connectivity.

    dotConnect for Oracle also supports Visual Studio LightSwitch, so you can develop LightSwitch applications with our provider. You can find a tutorial on creating a simple LightSwitch application using dotConnect for Oracle here: Tutorial: How to Connect Visual Studio LightSwitch to Oracle with dotConnect for Oracle Data Provider.

    Using the Entity Data Provider with Entity Framework v6

    Since there are no global Entity Framework provider registration for Entity Framework v6, you should register our provider manually in the config file of your project. For this you should add the following line:

    <provider invariantName="Devart.Data.Oracle" type="Devart.Data.Oracle.Entity.OracleEntityProviderServices, 
    Devart.Data.Oracle.Entity.EF6, Version=8.4.215.0, Culture=neutral, PublicKeyToken=09af7300eec23701" />
    

    to the entityFramework -> providers section.

    <entityFramework>
        <providers>
          <provider invariantName="Devart.Data.Oracle" type="Devart.Data.Oracle.Entity.OracleEntityProviderServices, 
          Devart.Data.Oracle.Entity.EF6, Version=8.4.215.0, Culture=neutral, PublicKeyToken=09af7300eec23701" />
        </providers>
    </entityFramework>
    

    Note: replace 8.4.215.0 with the actual assembly version.

    If it suits for your project, you may omit the exact assembly version:

    <entityFramework>
        <providers>
            <provider invariantName="Devart.Data.Oracle" type="Devart.Data.Oracle.Entity.OracleEntityProviderServices, Devart.Data.Oracle.Entity.EF6" />
        </providers>
    </entityFramework>
    

    This section appears in the project config file only after you add the NuGet EntityFramework package either explicitly, by executing the "install-package EntityFramework" command, or implicitly, by adding an Entity Framework v6 model for SQL Server via EDM Wizard.

    Using the Entity Data Provider with Entity Framework 6.4

    dotConnect for Oracle fully supports Entity Framework 6.4 on .NET Core 3 (and on Full .NET Framework).

    For Entity Framework 6.4, an Entity Framework provider cannot be registered in the config file of your project. You need to use any of the following two code-based approaches:

    Both of the above examples use the OracleEntityProviderServicesConfiguration class that suites for most users. If Entity Framework 6.4 provider configuration must be customized, you will need to create a descendant of the DbConfiguration class and set values for SetProviderFactory() and SetProviderServices() in it. Then use this custom class for provider registration. Here is an example:

      public class OracleConfiguration: DbConfiguration {
     
        public OracleConfiguration() {
     
          SetProviderFactory("Devart.Data.Oracle", Devart.Data.Oracle.OracleProviderFactory.Instance);
          SetProviderServices("Devart.Data.Oracle", Devart.Data.Oracle.Entity.OracleEntityProviderServices.Instance);
        } 
      }

    Using the Entity Data Provider with Entity Framework Core

    dotConnect for Oracle currently supports Entity Framework Core. Entity Framework Core is supported for the Full .NET Framework platform of version 4.5.1 and higher and for .NET Core. Dynamic database object creation (tables/FK/PK/indexes/triggers/sequences) based on an Entity Framework model is supported. See our Entity Framework Core Code-First Tutorial for Full .NET Framework and for .NET Core.

    Database-First via Package Manager Console and the Scaffold-DbContext command is supported. See our Entity Framework Core Database-First Tutorial for Full .NET Framework and for .NET Core.

    Please note that only a part of Entity Framework provider configuration settings is supported for Entity Framework Core. Also, not all Entity Framework v6 features are supported because Entity Framework Core does not support a lot of Entity Framework v6 features itself.

    In order to use Entity Framework Core for Full .NET Framework, you need Visual Studio 2013 or higher. For .NET Core you need Visual Studio 2017 or higher.

    In order to register an Entity Framework provider and set a connection string, you need to override the OnConfiguring method of your DbContext class descendant.

    C#csharpCopy Code
    protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) {
      
      optionsBuilder.UseOracle(@"User Id=Scott;Password=tiger;Data Source=Ora;");
    }
    
    
    Protected Overrides Sub OnConfiguring(optionsBuilder As DbContextOptionsBuilder)
    
    	optionsBuilder.UseOracle("User Id=Scott;Password=tiger;Data Source=Ora;")
    End Sub
    
    

    The mapping supported by Entity Framework Core is described in details in the corresponding section of Entity Framework documentation. If you plan to support several data sources for one base Entity Framework model, that is mapped to tables and columns named differently in different data sources, you can use special provider-specific extension methods in fluent mapping in order to support specific mapping for each data source simultaneously. dotConnect for Oracle provides the following extension methods:

    • ForOracleToTable() - specifies the table name.
    • ForOracleHasColumnName() - specifies the column name.
    • ForOracleHasColumnType() - specifies the column type.
    • ForOracleHasName() - specifies the the name of the index and primary key.
    • ForOracleHasConstraintName() - specifies the foreign key.
    • ForOracleHasDefaultValueSql() - specifies the column default value.

    Deploying an Entity Framework Project

    When deploying Entity Framework projects, it is necessary to:

    1. Check if the required assemblies Devat.Data.dll, Devart.Data.Oracle.dll, and Devart.Data.Oracle.Entity.EF<Version>.dll are available for your application. The <Version> here is the version of Entity Framework used in your application. For Entity Framework v1 the assembly is called Devart.Data.Oracle.Entity.EF1.dll "1", for Entity Framework v4 it is Devart.Data.Oracle.Entity.EF4.dll, for Entity Framework v5 and v6 it is Devart.Data.Oracle.Entity.EF5.dll or Devart.Data.Oracle.Entity.EF6.dll respectively. For Entity Framework Core it is Devart.Data.Oracle.Entity.EFCore.dll. The assembly should reside in the application's folder or in GAC.

    2. If you use Code-First Migrations feature of Entity Framework v4 or Entity Framework v5, you also need to check if the Devart.Data.Oracle.Entity.Migrations.EF<Version>.dll assembly is available for your application. For Entity Framework v6 this assembly is not needed.
    3. If you use Entity Framework Spatials and NetTopologySuite, you also need to check if the Devart.Data.Oracle.Entity.Spatials.EF<Version>.dll assembly is available for your application.
    4. If you use Entity Framework Core Spatials and NetTopologySuite for Entity Framework Core 3, you need to check if the Devart.Data.Oracle.Entity.EFCore3.NetTopologySuite.dll assembly is available for your application. It is located in the \Entity\EFCore3 subfolders of the dotConnect for Oracle installation folder. Additionally, you need to deploy the NetTopologySuite.dll assempbly from the NetTopologySuite 2.1.0 nuget package.
    5. For Entity Framework v1 - v6, you need to inform your environment about the provider factory existence (add the entry to the DbProviderFactories section as it is described above).
    <system.data>
      <DbProviderFactories>
        <remove invariant="Devart.Data.Oracle" />
        <add name="dotConnect for Oracle" invariant="Devart.Data.Oracle"
         description="Devart dotConnect for Oracle"
         type="Devart.Data.Oracle.OracleProviderFactory, Devart.Data.Oracle,
           Version=8.4.215.0, Culture=neutral, PublicKeyToken=09af7300eec23701" />
      </DbProviderFactories>
    </system.data>
    

    Replace 8.4.215.0 here with your actual version.

    You can find the necessary assemblies in the Entity folder in the provider installation folder, in the subfolder, corresponding to the Entity Framework version necessary.

    If you are registering the provider in the machine.config file, please take into account the Entity Framework version. Entity Framework v1 - specific applications require an entry in the .NET Framework 2.0 configuration file, and Entity Framework v4 and later - specific applications should be registered in the .NET Framework 4.0 configuration file. For Entity Framework Core there is no need to register the provider in the machine.config file.

    You can also read Micrsoft's Deployment Considerations on ADO.NET Entity Framework.

    Limitations

    We have applied our efforts to support the Entity Framework functionality (and particularly LINQ to Entities) as much as possible for the Oracle Server. And we have successfully implemented most features, but there are some limitations which cannot be overcome:

    • Oracle doesn't have its equivalents for the SQL Server OUTER APPLY and CROSS APPLY constructions (this issue is described at http://msdn.microsoft.com/en-us/library/bb896273.aspx). Microsoft decided not to change the current behaviour. So, users who encounter the mentioned obstacles should re-construct their LINQ-queries.
    • User-defined types, including Oracle objects, array types and nested tables are not supported.

    You can get more information in our blog. The blog articles dedicated to Entity Framework: http://blog.devart.com/tag/entity-framework

    Compatibility and Requirements

    dotConnect for Oracle is compatible with the latest version of ADO.NET Entity Framework and Visual Studio. The following Oracle version is required for Entity Framework to function properly: 9.2.0.4 or higher.

    Migration between ADO.NET Entity Data Model (*.edmx) and Devart Entity Model (*.edml)

    To migrate your ADO.NET Entity Data Model to Devart Entity Model, change the extension of the model file to edml (edmx -> edml), set the Build Action property of your model to "DevartEntityDeploy", and Custom Tool to "DevartEfGenerator". After that the model can be edited with the Devart Entity Developer.

    To migrate your Devart Entity Model to ADO.NET Entity Data Model, change the model file extension (edml -> edmx), set the Build Action property of your model to "EntityDeploy", and Custom Tool to "EntityModelCodeGenerator". After that the model can be edited with Entity Designer.

    Both *.edml and *.edmx can be opened and edited manually using XML Editor.

    See Also

    Entity Framework Tutorial | Devart LinqConnect | http://blog.devart.com/tag/entity-framework