R – NHibernate generic component

nhibernatenhibernate-mapping

How can I create generic component mapping in NHibernate, I have a class Pair{virtual T First{get;set}, virtual T Second{get;set;}}, I am trying to map it with something like this which is not working

Best Answer

It worked, trick was I had to use `, whereas I was using '

Related Topic