gpt4 book ai didi

nhibernate - 在 Nhibernate 中多次映射列

转载 作者:行者123 更新时间:2023-12-04 00:02:58 24 4
gpt4 key购买 nike

例如,我有一个实体。具有以下属性:

public class Entity
{
public int CustomerId { get; set; }
public Customer { get; set; }
}

如何将 CustomerId 映射两次。一次用于 int 属性,一次用于多对一关系?

<many-to-one name="Customer" column="[CustomerId]" class="Customer"/>
<property name="CustomerId" column="[CustomerId]" type="Int64" />

仅此而已,行不通。我已经尝试过,将它们设为只读但没有成功。

最佳答案

其中一个应该被映射为只读(inser/udpate false),并被引用为formula

<many-to-one name="Customer" column="[CustomerId]" class="Customer"/>
<property name="CustomerId" formula="[CustomerId]" type="Int64" insert="false" update="false" />

那么它应该可以正常工作。然后这两个属性都可以用于 Select, Where... order by

关于nhibernate - 在 Nhibernate 中多次映射列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13989322/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com