在我的 CFC 中,我有将在 cfquery 内的 SELECT 语句中使用的 DB 字段列表
<cfcomponent>
<cfscript>
...
variables.lstNode = "NodeID,ParentNodeID,Root,Kind
,extra,Slug,title,subtitle,description,isbn,parenttitle,ParentCreateDate
,strData,xmlData,pinned,pStatus,cStatus
...
后来在很多地方我会做类似的事情
<cfquery name="qryData">
SELECT #variables.lstNode#
FROM dbo.vwNode WITH (NOLOCK)
还有什么其他方法可以解决这个问题。注意 ORM 不是一个选项