What does Configuration.AddAssembly ("") do in NHibernate?
What the code below does in NHibernate:
<mapping assembly="Sample" /> //in the config file
OR
Configuration config = new Configuration();
config.AddAssembly("Sample"); //in the code file
Also, does this βpatternβ correspond to the main project namespace in .NET or can it be the name of any business object in our application?
+3