Using Visual Studio 2015, I have built a solution with :
An ASP NET Web application with MVC 6 : the project uses Remotion.linq.dll version 2 because of Entity Framemork 7 dependency used for authentication.
Two Windows Class Library : 'Services' and 'Data'. Those two are referenced by the web application. Project Data uses NHibernate to access the data layer, which rely on Remotion.linq.dll version 1.
My problem is that when I launch my app, only one of the two versions is referenced, causing the application to crash.
My questions are :
- Can we manage to reference two distincts versions of the DLL in my solution ?
- If not, can we make NHibernate work with Remotion.linq.dll version 2 ?