gpt4 book ai didi

带有命名参数的 nhibernate hql

转载 作者:行者123 更新时间:2023-12-03 16:44:47 28 4
gpt4 key购买 nike

我已经使用 Castel Active Record 实现了一个搜索功能。我认为代码很简单,但我一直在

NHibernate.QueryParameterException : 找不到命名参数 [searchKeyWords]

错误。有人能告诉我出了什么问题吗?太感谢了。

public List<Seller> GetSellersWithEmail(string searchKeyWords)
{
if (string.IsNullOrEmpty(searchKeyWords))
{
return new List<Seller>();
}
string hql = @"select distinct s
from Seller s
where s.Deleted = false
and ( s.Email like '%:searchKeyWords%')";

SimpleQuery<Seller> q = new SimpleQuery<Seller>(hql);
q.SetParameter("searchKeyWords", searchKeyWords);
return q.Execute().ToList();
}

最佳答案

为什么不通过参数传递 % 字符?

   string hql = @"select distinct s
from Seller s
where s.Deleted = false
and ( s.Email like :searchKeyWords)";
SimpleQuery<Seller> q = new SimpleQuery<Seller>(hql);
q.SetParameter("searchKeyWords", "%"+searchKeyWords+"%");
return q.Execute().ToList();

关于带有命名参数的 nhibernate hql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1891901/

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