熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Oracle >> 正文

在codesmith中去掉oracle下劃線

2022-06-13   來源: Oracle 
CodeSmith是針對NET的一款代碼生成工具同時它的很多自帶模版幾乎都是針對SQL Server構架的系統當在在使用Oracle 的時候由於PLSQL與TSQL各個方面的差別導致許多模版需要自定義甚至需要重寫許多模版由於大多數人在使用Oracle數據庫的時候使用下劃線的風格來命名變量而在NET開發中有不提倡使用帶下劃線的方式來命名變量於是本人決定在CodeSmith的模版中來轉換這一風格在CodeSmith中加入以後模版代碼

轉換代碼
 <script runat=template>
 public string GetFixName(string strVal)
 {
  
  string strReturnVal = ;
  string[]strVals = strValSplit(_);
  foreach(string str in strVals)
  {
   strReturnVal += strSubstring() + strSubstring()ToLower();
 }
 return strReturnVal;
}
</script>

    當要使用表名表字段映射成對象的對象對象字段屬性進程是可以通過上述函數轉化原來的名稱以到達與NET 編碼規范統一的效果
From:http://tw.wingwit.com/Article/program/Oracle/201311/18654.html
  • 上一篇文章:

  • 下一篇文章:
  • 推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.