Edit 2:
This does not happen when I use SQL Server. This only happens when I use Oracle. It was suggested to debug or provide an internal exception for this. However, since this exception occurs during scaffolding, I cannot get an internal exception. In addition, I’m not sure if the process of scaffolding construction can be debugged. If there is anyone who knows how to do this, let me know.
Mistake
An error occurred while starting the code generator:
'Exception selected by call target
Well, firstly, the search results error seems to return .
And so I found out that this error is not exceptional for creation Controller scaffoldingin EF 6.
But my case is when I am going to create Controller scaffoldingusing EF 6 in VS2013 when I create MVC web application.

The option I'm using:
MVC 5 Controller with views, using Entity Framework
I use Oracle Databaseand Oracle.ManagedDataAccess namespace. Some relevant posts I found are as follows:
But none of them speaks of a specific case for Oracle DB
DB , , :
sections, connectionStrings providers , :
<configSections>
<section name="oracle.manageddataaccess.client" type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
</configSections>
<connectionStrings>
<add name="EmployeeContext" connectionString="metadata=res://*/Models.EmployeeDataModel.csdl|res://*/Models.EmployeeDataModel.ssdl|res://*/Models.EmployeeDataModel.msl;provider=Oracle.ManagedDataAccess.Client;provider connection string="DATA SOURCE=VSDB;PASSWORD=mypassword;USER ID=myuser"" providerName="System.Data.EntityClient" />
</connectionStrings>
<providers>
<provider invariantName="Oracle.ManagedDataAccess.Client" type="Oracle.ManagedDataAccess.EntityFramework.EFOracleProviderServices, Oracle.ManagedDataAccess.EntityFramework, Version=6.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
</providers>
DbSet Context IDBSet
public virtual DbSet<Employee> Employees1 { get; set; }
VS2013 with update 5.
Entity Framework 6.1.3defaultConnectionFactory :
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="mssqllocaldb" />
</parameters>
</defaultConnectionFactory>
</entityFramework>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="v11.0" />
</parameters>
</defaultConnectionFactory>
</entityFramework>
OnModelCreating :
protected override void OnModelCreating(DbModelBuilder modelBuilder) {
throw new UnintentionalCodeFirstException();
}
protected override void OnModelCreating(DbModelBuilder modelBuilder) {
base.OnModelCreating(modelBuilder);
modelBuilder.HasDefaultSchema("myschema");
}
. . , .
, . ?
Edit:
, - , "" , , . -, Entity , , .
2:
, SQL-, Steve , Squiggle chat, . , - Oracle DB () ODP.Net, Oracle.ManagedDataAccess - EF.