Went through the first example by hand. Everything looked good. Ran
the program and hit an exception in
PersistenceModel Line 45:
        private void AddDiscoveryConventions()
        {
            foreach (var foundType in from type in typeof
(PersistenceModel).Assembly.GetTypes()
                                      where type.Namespace == typeof
(ClassDiscoveryConvention).Namespace && !type.IsAbstract
                                      select type)
            {
                ConventionFinder.Add(foundType);
            }
        }

Looked at my references and they were fine however, when I looked in
the bin area I noted that I did not have all the addition libs like
Castle, Iesi etc. My references were Identical to the example but we
differed in the bin. So I copied all the additional libs to my bin and
it ran.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Fluent NHibernate" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/fluent-nhibernate?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to