gpt4 book ai didi

nhibernate - 其中一个字段是 count(*) NHibernate

转载 作者:行者123 更新时间:2023-12-03 11:28:57 24 4
gpt4 key购买 nike

我可以像这样映射查询吗:

select id,name,address,(select count(*) from account where record_id=id ) as counter
from data where id = :id

目前,我使用的是原生 SQL。

class person
{
public virtual long Id{get;set;}
public virtual string Name{get;set;}
public virtual string Address{get;set;}
public virtual long Counter{get;set;}
}

映射:

<property name="Counter" formula="(select count(*) from account where record_id=id )"      type="long"/>

最佳答案

是的,您应该使用 formula .

您的映射可能如下所示:

<property name="CountOfAccounts"
formula="(select count(*) from account where account.id = id)"/>

关于nhibernate - 其中一个字段是 count(*) NHibernate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4984910/

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