我们有一个这样映射的组件:
Map(x => x.EffectiveDates)
.Columns
.Add(new[] { "EffDt", "ExpDt" })
.CustomType(typeof(DateRangeUserType));
我想做这样的事情
_session
.QueryOver<Agreement>()
.Where(a => a.EffectiveDates.Start >= now
&& a.EffectiveDates.End <= now)
但是我不能。它失败并出现错误
无法解析属性:EffectiveDates.Start
怎么能做到这一点QueryOver
?