Hi List,
i have the following mapping:
public TimeTableMapping()
{
Id(x => x.Id).GeneratedBy.GuidComb();
Map(x =>x.WorkDate).Not.Nullable();
Map(x =>x.WorkTime).Not.Nullable();
Map(x =>x.Job);References(x => x.Employee); !! Big class, lot's of Property's References(x => x.Project); !! Big class, lot's of Property's SelectBeforeUpdate(); DynamicUpdate(); } The mappings to Employee and Project can produce lot's of data. Is there any chance to load just few columns of Employees and Projects (Id + HeadLine), bind them to ComboBoxes and use these ComboBoxes as Lookup for my TimeTable?? This would save me from loading some hundreds of TimeEetry Records together with the mapped Projects and Employees. Thanks Peter -- 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.
