我在我的 Linq to NHibernate 查询中按多个字段排序时遇到问题。有谁知道可能出了什么问题或者是否有解决方法?
代码:
IQueryable<AgendaItem> items = _agendaRepository.GetAgendaItems(location)
.Where(item => item.Minutes.Contains(query) || item.Description.Contains(query));
int total = items.Count();
var results = items
.OrderBy(item => item.Agenda.Date)
.ThenBy(item => item.OutcomeType)
.ThenBy(item => item.OutcomeNumber)
.Skip((page - 1)*pageSize)
.Take(pageSize)
.ToArray();
return new SearchResult(query, total, results);
我尝试用多个 OrderBy 调用替换 ThenBy。结果相同。如果我注释掉两个 ThenBy 调用,该方法效果很好。
我收到的错误:
[SqlException(0x80131904):无效的列名'__hibernate_sort_expr_0____hibernate_sort_expr_1__'。 列名 '__hibernate_sort_expr_0____hibernate_sort_expr_1__' 无效。] System.Data.SqlClient.SqlConnection.OnError(SqlException 异常,布尔 breakConnection)+1948826 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException 异常,布尔型 breakConnection)+4844747 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) +194 System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) +2392 [ADOException:无法执行查询 [ 选择 this_.Id 作为 Id5_2_,this_.AgendaId 作为 AgendaId5_2_,this_.Description 作为 Descript3_5_2_,this_.OutcomeType 作为 OutcomeT4_5_2_,this_.OutcomeNumber 作为 OutcomeN5_5_2_,this_.Minutes 作为 Minutes5_2_,议程 1_.Id 作为 Id2_0_,议程 1_.LocationId 作为 LocationId2_0_议程 1_.日期为 Date2_0_,位置 2_.Id 为 Id7_1_,位置 2_.名称为 Name7_1_ FROM AgendaItem this_ 左外连接议程议程 1_ 在 this_.AgendaId=agenda1_.Id 左外连接位置 location2_ 在议程 1_.LocationId=location2_.Id WHERE location2_.Id = ? 和(this_.Minutes like ? or this_.Description like ?) ORDER BY Agenda1_.Date asc, this_.OutcomeType asc, this_.OutcomeNumber asc] 位置参数:#0>1 #0>%Core% #0>%Core% [SQL:选择 this_.Id 作为 Id5_2_,this_.AgendaId 作为 AgendaId5_2_,this_.Description 作为 Descript3_5_2_,this_.OutcomeType 作为 OutcomeT4_5_2_,this_.OutcomeNumber 作为 OutcomeN5_5_2_,this_.Minutes 作为 Minutes5_2_,议程 1_.Id 作为 Id2_0_,议程 1_.LocationId 作为LocationId2_0_,agenda1_.Date as Date2_0_,location2_.Id as Id7_1_,location2_.Name as Name7_1_ FROM AgendaItem this_ left outer join Agenda议程1_ on this_.AgendaId=agenda1_.Id left outer join Location location2_ on agenda1_.LocationId=location2_.Id WHERE location2_ .Id = ? 和 (this_.Minutes like ? or this_.Description like ?) ORDER BY议程1_.Date asc, this_.OutcomeType asc, this_.OutcomeNumber asc]] NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters) +258 NHibernate.Loader.Loader.ListIgnoreQueryCache(ISessionImplementor session, QueryParameters queryParameters) +18 NHibernate.Loader.Loader.List(ISessionImplementor session, QueryParameters queryParameters, ISet`1 querySpaces, IType[] resultTypes) +87 NHibernate.Impl.SessionImpl.List(CriteriaImpl 标准,IList 结果)+342 NHibernate.Impl.CriteriaImpl.List(IList 结果) +41 NHibernate.Impl.CriteriaImpl.List() +35 C:\home\dev\tools\NHibernate\NHibernateContribSrc\src\NHibernate.Linq\src\NHibernate.Linq\CriteriaResultReader.cs:22 中的 NHibernate.Linq.CriteriaResultReader`1.List() C:\home\dev\tools\NHibernate\NHibernateContribSrc\src\NHibernate.Linq\src\NHibernate.Linq\CriteriaResultReader.cs:27 中的 NHibernate.Linq.d__0.MoveNext()