0

私は、すべてのモデルがmysq、MSSQL、Oracleで作業することができ、コード最初のエンティティフレームワークとEFコードファースト独立したデータベースの複数のコンテキスト

データベースに依存しないでソフトウェアを作成したなど

プログラムはautomaticaly接続文字列を決めます。

mssqlとmysqlが正しく動作していたため、oracleを追加しました。 これでoracleとmysqlがmysqlの返信エラーをうまく処理しているので、設定ファイルにoracleを追加しました。

私の誤差がある「Oracle.ManagedDataAccess.dllで発生した型 『System.ArgumentExceptionの』の未処理の例外

追加情報: 『サーバー』は無効な接続文字列属性である」

あなたがエラーを見るようにメッセージmssqlcontext oracle構成のルールを使用またはチェックしようとしました。 どのように私はMSSQL を中断することなくoracleconfigurationを定義することができ、これは私がオラクル

<?xml version="1.0" encoding="utf-8"?> 
<configuration> 
    <configSections> 
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --> 
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> 
    </configSections> 
    <startup> 
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> 
    </startup> 

    <entityFramework> 
    <providers> 
     <provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6" /> 
     <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" /> 
    </providers> 
    </entityFramework> 

    <system.data> 
    <DbProviderFactories> 
     <remove invariant="MySql.Data.MySqlClient" /> 
     <add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" /> 
    </DbProviderFactories> 

    </system.data> 
</configuration> 
を追加する前に、これは私のapp.configをした

<?xml version="1.0" encoding="utf-8"?> 
<configuration> 
    <configSections> 
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --> 
    <section name="entityFramework" 
     type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" 
     requirePermission="false"/> 
    <section name="oracle.manageddataaccess.client" 
     type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342"/> 
    </configSections> 
    <startup> 
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/> 
    </startup> 
    <entityFramework> 
    <providers> 
     <provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6"/> 
     <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/> 
     <provider invariantName="Oracle.ManagedDataAccess.Client" 
     type="Oracle.ManagedDataAccess.EntityFramework.EFOracleProviderServices, Oracle.ManagedDataAccess.EntityFramework, Version=6.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342"/> 
    </providers> 
    </entityFramework> 

    <system.data> 
    <DbProviderFactories> 
     <remove invariant="MySql.Data.MySqlClient"/> 
     <add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" 
     type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d"/> 
     <remove invariant="Oracle.ManagedDataAccess.Client"/> 
     <add name="ODP.NET, Managed Driver" invariant="Oracle.ManagedDataAccess.Client" description="Oracle Data Provider for .NET, Managed Driver" 
     type="Oracle.ManagedDataAccess.Client.OracleClientFactory, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342"/> 



    </DbProviderFactories> 

    </system.data> 

    <runtime> 
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> 
     <dependentAssembly> 
     <publisherPolicy apply="no"/> 
     <assemblyIdentity name="Oracle.ManagedDataAccess" publicKeyToken="89b483f429c47342" culture="neutral"/> 
     <bindingRedirect oldVersion="4.121.0.0 - 4.65535.65535.65535" newVersion="4.121.2.0"/> 
     </dependentAssembly> 
    </assemblyBinding> 
    </runtime> 

</configuration> 

私のapp.configをどのようにOracleまたは を中断することなくMSSQL構成を定義することができます

編集1

public class MSSQLDBContext : BaseDbContext, IDbContext 
    { 
     //yeni 
     public MSSQLDBContext() : base(GlobalData.ConnStringMSSQLMigrationSysncDatabase) { 

     } 
     protected override void OnModelCreating(DbModelBuilder modelBuilder) 
     { 
      modelBuilder.Entity<Brand>().Property(c => c.deneme2).HasColumnType("xml"); 
      base.OnModelCreating(modelBuilder); 
     } 
    } 

[DbConfigurationType(typeof(MySqlEFConfiguration))] 
    public class MySQLDbContext : BaseDbContext, IDbContext 
    { 
     public MySQLDbContext():base(GlobalData.ConnStringMySQLMigrationSysncDatabase){} 
     protected override void OnModelCreating(DbModelBuilder modelBuilder) 
     { 
      modelBuilder.Entity<Brand>().Property(c => c.deneme2).HasColumnType("LONGTEXT"); 
      base.OnModelCreating(modelBuilder); 
     } 
    } 

public class OracleDbContext: BaseDbContext, IDbContext 
    { 
     public OracleDbContext() : base(GlobalData.ConnStringORACLEMigrationSyncDatabase) { } 




     protected override void OnModelCreating(System.Data.Entity.DbModelBuilder modelBuilder) 
     { 
      modelBuilder.HasDefaultSchema("SEMIH"); 
      base.OnModelCreating(modelBuilder); 

     } 
    } 
+0

例外メッセージは**接続文字列**エラーを示していますので、 ''セクション(投稿には表示されていません)を見る必要があります。 –

+0

メッセージのためのIvan Thanx、 私は接続文字列の動作をテストしました。 public MSSQLDBContext():base(GlobalData.ConnStringMSSQLMigrationSysncDatabase){ } 私のプロジェクトにoracleを追加した後、この接続文字列は 「 'server'は無効な接続文字列属性です」というエラーが発生しましたOracle.ManagedDataAccess.dllからのエラー。 私はmssql dbコンテキストがその構成タイプを取ることができないと思いますか? –

+0

Oracleの接続文字列を見てください。 ODP.NETがサポートしていない "server = ..."のようなものが含まれているようです。異なるデータベースに異なる接続文字列を使用する必要がありますが、正しいですか? –

答えて

0

(mssqldbcontexの場合)Dbから内在する新しいdbConfigurationを定義しました。 Configurationクラスと私は

​​

そのプロバイダファクトリを設定し、私はmssqlDbContex

よう
public class OracleProviderConfig : DbConfiguration 
    { 
     public OracleProviderConfig() 
     { 

      SetProviderServices("Oracle.ManagedDataAccess.Client", EFOracleProviderServices.Instance); 
      SetProviderFactory("Oracle.ManagedDataAccess.Client", OracleClientFactory.Instance); 

     } 
    } 

をoracleDbcontexための新しいクラスを作成し、私はこの

[DbConfigurationType(typeof(OracleProviderConfig))] 
    public class OracleDbContext: BaseDbContext, IDbContext 

のような彼らのdbContextの上にこの設定を呼ばれます最後に私のapp.configから明確なプロバイダがあります

<?xml version="1.0" encoding="utf-8"?> 
<configuration> 
    <configSections> 
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --> 
    <section name="entityFramework" 
     type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" 
     requirePermission="false"/> 
    <section name="oracle.manageddataaccess.client" 
     type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342"/> 
    </configSections> 
    <entityFramework> 
    <providers> 

    </providers> 
    </entityFramework> 
<system.data> 

    </system.data> 
<runtime> 
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> 
<dependentAssembly> 
<publisherPolicy apply="no"/> 
<assemblyIdentity name="Oracle.ManagedDataAccess" publicKeyToken="89b483f429c47342" culture="neutral"/> 
<bindingRedirect oldVersion="4.121.0.0 - 4.65535.65535.65535" newVersion="4.121.2.0"/> 
</dependentAssembly> 
</assemblyBinding> 
</runtime> 

</configuration> 

解決済み

関連する問題