2

我正在尝试做一个基本的连接,这将需要几秒钟的 SQL 但是......我正在尝试让它与 ORMExecuteQuery(基于 Hibernate 的 Coldfusion 9)一起工作。

我有 3 个对象: - 联系人 - ContactCategory_Link - ContactCategory

组件的详细信息将在简短描述什么工作和什么不工作之后进行。

基本上一个联系人可以有很多类别,一个类别也可以有很多联系人。因为我需要为每个链接添加不同的参数(例如,我想为每个联系人排序(最终用户必须能够重新排序类别),以及我的系统所需的其他信息)。我没有使用多对多关系,因为似乎不可能添加那种附加信息。

所以这是完美的请求:

<cfset response["rows"] = ORMExecuteQuery("
        SELECT new map(c.name as Name)
        FROM Contact c
        ")>

它完美地给出了联系人姓名。但是,每次我尝试添加另一个表时,它都会失败。例如:

<cfset response["rows"] = ORMExecuteQuery("
        SELECT new map(c.name as Name)
        FROM Contact c
        JOIN ContactCategory_Link
        ")>

会给:

Path expected for join! 

即使我正在更改ContactCategory_Linkfor ContactCategory_Link.contact,它也会给出如下内容:

Invalid path: 'null.contact'

所以我猜我的组件 CFC 设置不正确,但我不明白为什么。

你能帮我解决这个问题吗?


这是每个对象的代码:

<cfcomponent displayname="Contact" entityname="Contact" table="step8_contact" persistent="true"  output="false">

<cfproperty name="id" column="contactID" type="guid" fieldtype="id" setter="false" unique="true" notnull="true" generated="insert" generator="identity">

<cfproperty name="name" column="name" type="string" length="125" required="true">

<cfproperty name="categories" fieldtype="one-to-many" singularname="category" fkcolumn="contactID" cfc="ContactCategory_Link" missingRowIgnored="true" cascade="all-delete-orphan">

</cfcomponent>

<cfcomponent displayname="ContactCategory_Link" entityname="ContactCategory_Link" table="step8_contactcategory_link" persistent="true" output="false">

<cfproperty name="id" column="contactcategory_linkID" type="numeric" fieldtype="id" setter="false" unique="true" notnull="true" generated="insert" generator="identity">

<cfproperty name="orderId" column="orderId" type="numeric" required="true"> <!---notnull="true"--->

<cfproperty name="contact" fieldtype="many-to-one" fkcolumn="contactID" cfc="Contact" missingRowIgnored="true">
<cfproperty name="contactcategory" fieldtype="many-to-one" fkcolumn="contactcategoryID" cfc="ContactCategory" missingRowIgnored="true">

</cfcomponent>

<cfcomponent displayname="ContactCategory" output="false" persistent="true" entityname="ContactCategory" table="step8_contactcategories" hint="" cacheuse="read-only" cachename="contactcategory">

<cfproperty name="id" column="contactcategoryID" type="numeric" fieldtype="id" setter="false" unique="true" notnull="true" generated="insert" generator="identity">
<cfproperty name="label" column="label" type="string" length="255" required="true" notnull="true">
<cfproperty name="orderId" column="orderId" type="numeric" required="true" notnull="true">

<cfproperty name="categories" fieldtype="one-to-many" singularname="category" fkcolumn="contactcategoryID" cfc="ContactCategory_Link" missingRowIgnored="true" cascade="all-delete-orphan" lazy="true"> 
</cfcomponent>

谢谢你的帮助。

4

1 回答 1

1

cfset 可能是一个 hql-query(休眠查询语言 = 对象查询语言)。你需要

<cfset response["rows"] = ORMExecuteQuery("
    SELECT c.name as Name, cat.whatever as Whatever
    FROM Contact c
    JOIN c.Categories cat
    ")>
于 2012-01-12T07:58:52.027 回答