|
|
@@ -5,18 +5,19 @@ |
|
|
|
--> |
|
|
|
<configuration> |
|
|
|
<configSections> |
|
|
|
<section name="redisconfig" type="Learun.Cache.Redis.RedisConfigInfo,Learun.Cache.Redis" /> |
|
|
|
<section name="unity" type="Microsoft.Practices.Unity.Configuration.UnityConfigurationSection,Microsoft.Practices.Unity.Configuration" /> |
|
|
|
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /> |
|
|
|
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> |
|
|
|
<section name="redisconfig" type="Learun.Cache.Redis.RedisConfigInfo,Learun.Cache.Redis"/> |
|
|
|
<section name="unity" type="Microsoft.Practices.Unity.Configuration.UnityConfigurationSection,Microsoft.Practices.Unity.Configuration"/> |
|
|
|
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/> |
|
|
|
<section name="entityFramework" |
|
|
|
type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" |
|
|
|
requirePermission="false"/> |
|
|
|
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --> |
|
|
|
<section name="oracle.manageddataaccess.client" type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.122.19.1, Culture=neutral, PublicKeyToken=89b483f429c47342" /> |
|
|
|
<section name="oracle.manageddataaccess.client" |
|
|
|
type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342"/> |
|
|
|
</configSections> |
|
|
|
<unity configSource="XmlConfig\ioc.config" /> |
|
|
|
<connectionStrings configSource="XmlConfig\database.config"> |
|
|
|
</connectionStrings> |
|
|
|
<appSettings configSource="XmlConfig\system.config" /> |
|
|
|
<log4net configSource="XmlConfig\log4net.config" /> |
|
|
|
<unity configSource="XmlConfig\ioc.config"/> |
|
|
|
<appSettings configSource="XmlConfig\system.config"/> |
|
|
|
<log4net configSource="XmlConfig\log4net.config"/> |
|
|
|
<!-- |
|
|
|
有关 web.config 更改的说明,请参见 http://go.microsoft.com/fwlink/?LinkId=235367。 |
|
|
|
|
|
|
@@ -26,25 +27,25 @@ |
|
|
|
</system.Web> |
|
|
|
--> |
|
|
|
<system.web> |
|
|
|
<sessionState mode="InProc" timeout="180" /> |
|
|
|
<sessionState mode="InProc" timeout="180"/> |
|
|
|
<compilation debug="true" targetFramework="4.6.2"> |
|
|
|
<assemblies> |
|
|
|
<add assembly="System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> |
|
|
|
<add assembly="System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> |
|
|
|
</assemblies> |
|
|
|
</compilation> |
|
|
|
<customErrors mode="Off" defaultRedirect="\Error\ErrorPath404" /> |
|
|
|
<customErrors mode="Off" defaultRedirect="\Error\ErrorPath404"/> |
|
|
|
<pages controlRenderingCompatibilityVersion="4.6.2"> |
|
|
|
<namespaces> |
|
|
|
<add namespace="System.Web.Helpers" /> |
|
|
|
<add namespace="System.Web.Mvc" /> |
|
|
|
<add namespace="System.Web.Mvc.Ajax" /> |
|
|
|
<add namespace="System.Web.Mvc.Html" /> |
|
|
|
<add namespace="System.Web.Routing" /> |
|
|
|
<add namespace="System.Web.WebPages" /> |
|
|
|
<add namespace="System.Web.Helpers"/> |
|
|
|
<add namespace="System.Web.Mvc"/> |
|
|
|
<add namespace="System.Web.Mvc.Ajax"/> |
|
|
|
<add namespace="System.Web.Mvc.Html"/> |
|
|
|
<add namespace="System.Web.Routing"/> |
|
|
|
<add namespace="System.Web.WebPages"/> |
|
|
|
</namespaces> |
|
|
|
</pages> |
|
|
|
<!--最大请求长度,单位为KB(千字节),默认为4M,设置为1G,上限为2G --> |
|
|
|
<httpRuntime maxRequestLength="2048000" executionTimeout="3600" /> |
|
|
|
<httpRuntime maxRequestLength="2048000" executionTimeout="3600"/> |
|
|
|
</system.web> |
|
|
|
<system.webServer> |
|
|
|
<security> |
|
|
@@ -52,142 +53,162 @@ |
|
|
|
<requestLimits maxAllowedContentLength="2048000000"></requestLimits> |
|
|
|
</requestFiltering> |
|
|
|
</security> |
|
|
|
<validation validateIntegratedModeConfiguration="false" /> |
|
|
|
<modules runAllManagedModulesForAllRequests="true" /> |
|
|
|
<validation validateIntegratedModeConfiguration="false"/> |
|
|
|
<modules runAllManagedModulesForAllRequests="true"/> |
|
|
|
<handlers> |
|
|
|
<remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" /> |
|
|
|
<remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" /> |
|
|
|
<remove name="ExtensionlessUrlHandler-Integrated-4.0" /> |
|
|
|
<add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" /> |
|
|
|
<add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" /> |
|
|
|
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> |
|
|
|
<remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit"/> |
|
|
|
<remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit"/> |
|
|
|
<remove name="ExtensionlessUrlHandler-Integrated-4.0"/> |
|
|
|
<add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" |
|
|
|
scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" |
|
|
|
responseBufferLimit="0"/> |
|
|
|
<add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" |
|
|
|
scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" |
|
|
|
responseBufferLimit="0"/> |
|
|
|
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" |
|
|
|
type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0"/> |
|
|
|
</handlers> |
|
|
|
<defaultDocument> |
|
|
|
<files> |
|
|
|
<clear /> |
|
|
|
<add value="index.htm" /> |
|
|
|
<add value="index.html" /> |
|
|
|
<clear/> |
|
|
|
<add value="index.htm"/> |
|
|
|
<add value="index.html"/> |
|
|
|
</files> |
|
|
|
</defaultDocument> |
|
|
|
</system.webServer> |
|
|
|
<runtime> |
|
|
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" /> |
|
|
|
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" /> |
|
|
|
<assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35"/> |
|
|
|
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" /> |
|
|
|
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" /> |
|
|
|
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-5.2.4.0" newVersion="5.2.4.0" /> |
|
|
|
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-5.2.4.0" newVersion="5.2.4.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" /> |
|
|
|
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> |
|
|
|
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/> |
|
|
|
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" /> |
|
|
|
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> |
|
|
|
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/> |
|
|
|
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="b77a5c561934e089" culture="neutral" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" /> |
|
|
|
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="b77a5c561934e089" culture="neutral"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="System.IO.Compression" culture="neutral" publicKeyToken="b77a5c561934e089" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" /> |
|
|
|
<assemblyIdentity name="System.IO.Compression" culture="neutral" publicKeyToken="b77a5c561934e089"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="System.Runtime.InteropServices.RuntimeInformation" culture="neutral" publicKeyToken="b03f5f7f11d50a3a" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" /> |
|
|
|
<assemblyIdentity name="System.Runtime.InteropServices.RuntimeInformation" culture="neutral" publicKeyToken="b03f5f7f11d50a3a"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="System.Net.Sockets" culture="neutral" publicKeyToken="b03f5f7f11d50a3a" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" /> |
|
|
|
<assemblyIdentity name="System.Net.Sockets" culture="neutral" publicKeyToken="b03f5f7f11d50a3a"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<publisherPolicy apply="no" /> |
|
|
|
<assemblyIdentity name="Oracle.ManagedDataAccess" publicKeyToken="89b483f429c47342" culture="neutral" /> |
|
|
|
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> |
|
|
|
<assemblyIdentity name="DocumentFormat.OpenXml" publicKeyToken="8fb06cb64d019a17" culture="neutral"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-2.8.1.0" newVersion="2.8.1.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="DocumentFormat.OpenXml" publicKeyToken="8fb06cb64d019a17" culture="neutral" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-2.8.1.0" newVersion="2.8.1.0" /> |
|
|
|
<assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" /> |
|
|
|
<assemblyIdentity name="System.Reflection" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="System.Reflection" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" /> |
|
|
|
<assemblyIdentity name="System.Runtime.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="System.Runtime.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" /> |
|
|
|
<assemblyIdentity name="System.Diagnostics.Tracing" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="System.Diagnostics.Tracing" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" /> |
|
|
|
<assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.3" newVersion="4.1.1.3"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.3" newVersion="4.1.1.3" /> |
|
|
|
<assemblyIdentity name="Microsoft.Owin.Host.SystemWeb" publicKeyToken="31bf3856ad364e35" culture="neutral"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="Microsoft.Owin.Host.SystemWeb" publicKeyToken="31bf3856ad364e35" culture="neutral" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> |
|
|
|
<assemblyIdentity name="System.Runtime.InteropServices" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="System.Runtime.InteropServices" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" /> |
|
|
|
<assemblyIdentity name="System.Diagnostics.DiagnosticSource" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="System.Diagnostics.DiagnosticSource" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" /> |
|
|
|
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" /> |
|
|
|
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" /> |
|
|
|
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.0.6.0" newVersion="4.0.6.0"/> |
|
|
|
</dependentAssembly> |
|
|
|
<dependentAssembly> |
|
|
|
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.0.6.0" newVersion="4.0.6.0" /> |
|
|
|
<publisherPolicy apply="no"/> |
|
|
|
<assemblyIdentity name="Oracle.ManagedDataAccess" publicKeyToken="89b483f429c47342" culture="neutral"/> |
|
|
|
</dependentAssembly> |
|
|
|
</assemblyBinding> |
|
|
|
</runtime> |
|
|
|
<entityFramework> |
|
|
|
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework"> |
|
|
|
<parameters> |
|
|
|
<parameter value="v13.0" /> |
|
|
|
<parameter value="v13.0"/> |
|
|
|
</parameters> |
|
|
|
</defaultConnectionFactory> |
|
|
|
<providers> |
|
|
|
<provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" /> |
|
|
|
<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" /> |
|
|
|
<provider invariantName="MySql.Data.MySqlClient" |
|
|
|
type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d"/> |
|
|
|
<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.122.19.1, Culture=neutral, PublicKeyToken=89b483f429c47342" /> |
|
|
|
<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> |
|
|
|
<connectionStrings> |
|
|
|
<add name="OracleDbContext" providerName="Oracle.ManagedDataAccess.Client" |
|
|
|
connectionString="User Id=oracle_user;Password=oracle_user_password;Data Source=oracle"/> |
|
|
|
</connectionStrings> |
|
|
|
<oracle.manageddataaccess.client> |
|
|
|
<version number="*"> |
|
|
|
<dataSources> |
|
|
|
<dataSource alias="SampleDataSource" descriptor="(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=ORCL))) "/> |
|
|
|
</dataSources> |
|
|
|
</version> |
|
|
|
</oracle.manageddataaccess.client> |
|
|
|
</configuration> |