ColdFusion 11支持ORM吗?

ColdFusion 11支持ORM吗?,orm,coldfusion,cfml,Orm,Coldfusion,Cfml,通过ORM映射两个cfc对象,执行时转储仅显示table=products的一个父cfc对象的数据,而cfctable=department的数组在输出中返回为(空字符串) <cfcomponent persistent="true" table="products" > <cfproperty name="productID" column="id" fieldtype="id&qu

通过ORM映射两个cfc对象,执行时转储仅显示
table=products
的一个父cfc对象的数据,而cfc
table=department
的数组在输出中返回为(空字符串)

<cfcomponent persistent="true" table="products" >
  <cfproperty name="productID" column="id" fieldtype="id"  type="numeric" generator="increment">
  <cfproperty name="name">
  <cfproperty name="price">
  <cfproperty name="description">
  <cfproperty name="imageurl">
  <cfproperty name="departmt" fieldtype="many-to-one" cfc="departmt" fkcolumn="dept_id" lazy="true">



1。你倒垃圾的时候会得到什么?2.摆脱lazy=“true”谢谢@JamesAMohler,我在没有lazy=“true”的情况下试过了,但也遇到了同样的错误。事实上,DB中有一个关于缺少外键列的错误,解决了这个问题,我消除了这个错误。你应该写一篇关于问题是什么以及如何解决它的文章。这对下一个人很有用。你倒垃圾的时候会得到什么?2.摆脱lazy=“true”谢谢@JamesAMohler,我在没有lazy=“true”的情况下试过了,但也遇到了同样的错误。事实上,DB中有一个关于缺少外键列的错误,解决了这个问题,我消除了这个错误。你应该写一篇关于问题是什么以及如何解决它的文章。这对下一个人很有用。
<cfcomponent persistent="true" table="department">
  <cfproperty name="id" column="dept_id" fieldtype="id" type="numeric" generator="increment">
  <cfproperty name="name" column="dept_name">
  <cfproperty name="location" >
</cfcomponent>