I am trying to do some paging together with some fetching, but the result returns duplicates. I have therefore added a AliasToBeanResultTransformer, but then I get the following error:
Could not find a setter for property 'this' in class 'ForumThread'
var crit = Session.CreateCriteria<ForumThread>()
.Add(Expression.Eq("IsActive", true))
.AddOrder(new Order("LastForumPost", false))
.SetFirstResult((page - 1)*pageSize)
.SetMaxResults(pageSize)
.SetFetchMode("ForumPosts", FetchMode.Eager)
.SetFetchMode("ForumTagRelations", FetchMode.Eager)
.SetCacheable(true)
.SetResultTransformer(new NHibernate.Transform.AliasToBeanResultTransformer(typeof (ForumThread)));
return crit.List<ForumThread>();
What might I be missing?