在使用linq进行非休眠时,没有实现该方法或操作
本文关键字:实现 方法 操作 linq 休眠 | 更新日期: 2023-09-27 18:17:38
我试图使用linq来nhibernate 3,我已经做了以下linq查询
var a = (from c in Session.Query<ChoiceValue>()
join Specific in
(
(from choicevaluelocale in Session.Query<ChoiceValueLocale>()
where
choicevaluelocale.UICulture == "en-GB"
select new
{
choicevaluelocale.ChoiceValue.ChoiceGroup.ChoiceGroupName,
choicevaluelocale.ChoiceValue.ChoiceValueId,
choicevaluelocale.DisplayName,
choicevaluelocale.Description
}))
on new { c.ChoiceGroup.ChoiceGroupName, c.ChoiceValueId }
equals new { Specific.ChoiceGroupName, ChoiceValueId = (Int32)Specific.ChoiceValueId } into Specific_join
from Specific in Specific_join.DefaultIfEmpty()
select new
{
c.ChoiceGroup.ChoiceGroupName,
ChoiceValueId = (Int32?)c.ChoiceValueId,
SpecificValueDisplayName = Specific.DisplayName,
SpecificValueDescription = Specific.Description,
}).ToList();
但是在c#的n-hibernate上执行时,我得到了以下错误
The method or operation is not implemented
堆栈跟踪是
at NHibernate.Linq.Visitors.QueryModelVisitor.VisitGroupJoinClause(GroupJoinClause
groupJoinClause, QueryModel queryModel, Int32 index)
at Remotion.Data.Linq.Clauses.GroupJoinClause.Accept(IQueryModelVisitor visitor,
QueryModel queryModel, Int32 index)
at Remotion.Data.Linq.QueryModelVisitorBase.VisitBodyClauses(ObservableCollection`1
bodyClauses, QueryModel queryModel)
at Remotion.Data.Linq.QueryModelVisitorBase.VisitQueryModel(QueryModel queryModel)
at NHibernate.Linq.Visitors.QueryModelVisitor.GenerateHqlQuery(QueryModel
queryModel, VisitorParameters parameters, Boolean root)
at NHibernate.Linq.NhLinqExpression.Translate(ISessionFactoryImplementor
sessionFactory)
谁能帮我解决这个问题?
在我看来,您使用的Linq to Hibernate库是不完整的。某个地方扔出了一个NotImplementedException
。你使用的是稳定版本吗?
在互联网上快速浏览一下,发现不支持select中的组连接和子查询。在示例中使用的是组连接,因此会出现例外。具体来说,以下帖子:
- http://ayende.com/blog/4083/nhibernate-linq-1-0-released
-
http://guildsocial.web703.discountasp.net/dasblogce/2009/07/29/LinqToNHibernateJoins.aspx(LINK IS DEAD)
在NHibernate 3.1源代码中,抛出异常的方法看起来就像这样:
public override void VisitGroupJoinClause(GroupJoinClause groupJoinClause, QueryModel queryModel, int index)
{
throw new NotImplementedException();
}
UPDATE: As of version 5.1。x, NHibernate的LINQ提供程序仍然不支持这个操作。
一些解决方案建议编写自己的HQL(如原始SQL)而不是Linq语法。