我正在尝试QueryOver并选择一个返回私有属性的属性。我无法解释清楚,但这个例子会告诉你。
映射:
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" namespace="IWA.Model" assembly="IWA.Model">
<class name="Test" lazy="false" table="Test">
<id name="Id" column="Id" >
<generator class="identity" />
</id>
<bag name="_images" access="field" table="Image" cascade="none">
<key column="IdTest" />
<one-to-many class="Image" />
</bag>
</class>
</hibernate-mapping>
类别:
public class Test : IEntity<int>
{
private readonly IList<Image> _images;
public Test()
{
_images = new List<Image>();
}
public int Id { get; set; }
public Image Image => _images.FirstOrDefault();
}
QueryOver:
TestDto r = null;
Session.QueryOver<Test>()
.Where(x => x.Id == _id)
.Select(
Projections.Property<Test>(x => x.Id).WithAlias(() => r.Id),
Projections.Property<Test>(x => x.Image).WithAlias(() => r.Image)
) .TransformUsing(Transformers.AliasToBean<TestDto>())
.SingleOrDefault<TestDto>();
当我尝试此查询时,我得到“无法解析属性”。没有预测的查询工作正常。
知道我做错了吗?
答案 0 :(得分:2)
NHibernate无法解析未映射的运行时计算属性,例如Image
,因此无法对其进行投影。您只能在投影中使用映射属性。
要实现预测,您必须加入Image
表,并且只能加入Take(1)
。有关示例,请参阅this。