I'm using multiple namespaces in my assembly, one for the interfaces and one for the classes, is there a way that i can use classes of both namespaces within my mapping file without giving the explicit name?
Currently i have:
Code:
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="Test" namespace="Test">
<class name="TestClass" table="TestTable" proxy="Test.Interfaces.ITestClass">
...
</class>
</hibernate>
I would like to have:
Code:
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="Test" namespace="Test">
<class name="TestClass" table="TestTable" proxy="ITestClass">
...
</class>
</hibernate>