Hi,
I am new to NHibernate.
I am migrating legacy application from .NET 1.1 to .NET 2.0.
Application consumes NHibernate version 1.2.0. When I add "NHibernate 1.1" project to .NET 2005 solution & try to build, it gives me error -
"Use IEqualityComparer instead of IHashCodeProvider"
for the statement -
IHashCodeProvider ihcp = new NHibernate.IdentityHashCodeProvider();
The class "IdentityHashCodeProvider" belongs to dll file "HashCodeProvider.dll" & I don't have source code for this file.
This dll is referred from "PersistantLayer" project.
How do I handle this error?
|