Oracle.ManagedDataAccess Система не может найти указанный файл

В моем проекте веб-сайта, построенном на .net 3.5, когда я добавляю ссылку на Oracle.ManagedDataAccess.dll, добавляя ее в web.config

<add assembly="Oracle.ManagedDataAccess, Version=4.121.1.0, Culture=neutral, PublicKeyToken=89B483F429C47342"/>

это дает эту ошибку

Configuration Error 
  Description: An error occurred during the processing of a configuration file required to     service this request. Please review the specific error details below and modify your configuration file appropriately. 

 Parser Error Message: Could not load file or assembly 'Oracle.ManagedDataAccess, Version=4.121.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342' or one of its dependencies. The system cannot find the file specified.

person Shomaail    schedule 23.02.2014    source источник


Ответы (1)


Эта ошибка возникает в .net версии 3.5. Решение заключается в обновлении версии .net до .net 4.0 или выше.

person Shomaail    schedule 23.02.2014