我转换为Coldfusion的ORM,并想知道如何使用ORM复制cfoutput的分组?
我收到以下错误:Can't cast Object type [java.util.ArrayList] to a value of type [query]
查询:
qryGames = ormExecuteQuery("from Game where Season.seasonID=:sid and League.leagueID=:lid and Season.User.userID=:uid order by League.leagueName, GameType.gameTypeID, gameDate DESC", {sid=url.sid, lid=leagueID, uid=session.userID});
代码:
<cfif arraylen(qryGames) GT 0>
<cfoutput query="qryGames" group="leagueName">
<cfoutput group="gameTypeName">
...
</cfoutput>
</cfoutput>
</cfif>
我没有看到cfloop的分组属性。我总是可以手动复制这个,但是想知道是否有内置方法可以做到这一点。
更新#1
使用entityToQuery
:
qryGames = entityToQuery(ormExecuteQuery("from Game where Season.seasonID=:sid and League.leagueID=:lid and Season.User.userID=:uid order by League.leagueName, GameType.gameTypeID, gameDate DESC", {sid=url.sid, lid=leagueID, uid=session.userID}), "League");
我收到以下错误:
Message column [gameTypeName] not found in query, columns are [leagueID,leagueName,leagueAbbr,teamName,gameInMinutes,deleteYN,showReportYN]
仅限一个实体名称?
答案 0 :(得分:1)
您的结果集不是查询,而是数组,必须循环使用。
<cfloop array="#games#" index="game">
<!--- do stuff --->
</cfloop>
至于复制可用于查询的内置分组功能,我不相信数组有自动方式,因此您需要在组中编写逻辑来执行分组,否则您将需要返回后将结果集分开,并使用单独的循环遍历不同的部分。
答案 1 :(得分:1)
首先使用EntityToQuery()
http://cfdocs.org/entitytoquery,然后您可以使用<cfoutput query=