Click here to Skip to main content
15,887,683 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
C#
using (IDataReader dr = objSqlDb.ExecuteReader(objDbCmd))
              {
                  // Do Something...

              }




throws an exception :


Could not load file or assembly 'Microsoft.Practices.Unity, Version=2.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
Posted

1 solution

The error explains what you should do:

- Makes sure Microsoft.Practices.Unity.dll exists beside the code you are running e.g. in the bin folder.

- If it is not in the GAC try adding it there.
 
Share this answer
 
Comments
[no name] 9-Nov-12 22:41pm    
IT'S WORKING FINE NOW
[no name] 9-Nov-12 22:42pm    
works only for version 2.0 and not 2.1

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900