脚本中的ColdFusion9 orm属性

时间:2009-12-27 01:19:34

标签: orm coldfusion

我想用脚本语法而不是旧样式标记语法编写以下内容。

<cfcomponent persistent="true" table="AuditType" schema="Audit" >
    <cfproperty name="AuditTypeID" column="AuditTypeID" ormtype="int" fieldtype="id" />
    <cfproperty name="AuditTypeName" column="AuditTypeName" ormtype="string"  />
    <cfproperty name="AuditTypeSort" column="AuditTypeSort" ormtype="integer" />
</cfcomponent>

1 个答案:

答案 0 :(得分:7)

cfscript语法非常相似,

component persistent="true" table="AuditType" schema="Audit" {
  property name="AuditTypeID" column="AuditTypeID" ormtype="int" fieldtype="id";
  property name="AuditTypeName" column="AuditTypeName" ormtype="string";
  property name="AuditTypeSort" column="AuditTypeSort" ormtype="integer";
}