I have another Unknown Entity Class problem.
I have combed through the logs looking for something and found this:
Code:
Persister.GetSetHelperFactory Disabling reflection optimizer for class Cystem.Members.Leads.Actions.Communications.MessageDistribution
Persister.GetSetHelperFactory CodeDOM compilation failed
System.NullReferenceException: Object reference not set to an instance of an object.
at NHibernate.Persister.GetSetHelperFactory.GenerateCode()
at NHibernate.Persister.GetSetHelperFactory.CreateGetSetHelper()
Here is my mapping for the Component Collection
Code:
<bag name="Distribution" cascade="all-delete-orphan" table="Lead_Action_Communication_Distribution" access="nosetter.camelcase-underscore" >
<key column="ActionId" />
<composite-element class="Cystem.Members.Leads.Actions.Communications.MessageDistribution,Cystem.Members">
<many-to-one name="Employee" column="EmployeeId" class="Cystem.Members.Employee,Cystem.Members" access="nosetter.camelcase-underscore" />
<property name="Action" column="ActionType" type="Cystem.Members.Leads.Actions.Communications.ActionType,Cystem.Members" access="nosetter.camelcase-underscore" />
<property name="Language" type="Cystem.LanguageType,Cystem" access="nosetter.camelcase-underscore" />
</composite-element>
</bag>
Based on a posting which I can't find I have tried to change the name of the class to make it easier to pick up but that didn't work either. I am pretty stuck at this point and don't know where to go.
I have no problem trying to figure this out, I am just out of ideas.
Dru