4
讓我查詢自包含的,可重複使用的可能,我傾向於這樣做在NH2:NHibernate的可重複使用的QueryOver
public class FeaturedCarFinder : DetachedCriteria
{
public FeaturedCarFinder(int maxResults) : base(typeof(Car))
{
Add(Restrictions.Eq("IsFeatured", true));
SetMaxResults(maxResults);
SetProjection(BuildProjections());
SetResultTransformer(typeof(CarViewModelMessage));
}
}
我現在想用QueryOver,我已經搬到了NH3,但我不知道如何使用QueryOver來完成上述操作?