T4模板循环生成插入语句

Posted anthony518

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了T4模板循环生成插入语句相关的知识,希望对你有一定的参考价值。

<#@ template debug="false" hostspecific="false" language="C#" #> <#@ assembly name="System.Core" #> <#@ import namespace="System.Linq" #> <#@ import namespace="System.Text" #> <#@ import namespace="System.Collections.Generic" #> <#@ output extension=".txt" #> <# for (int i = 1; i < 22; i++) #> insert into tb_sys_module (f_id, f_parentid, f_layers, f_encode, f_fullname, f_icon, f_urladdress, f_target, f_ismenu, f_isexpand, f_ispublic, f_allowedit, f_allowdelete, f_sortcode, f_deletemark, f_enabledmark, f_description, f_creatortime, f_creatoruserid, f_lastmodifytime, f_lastmodifyuserid, f_deletetime, f_deleteuserid, f_ismodule) values ( ‘<#= Guid.NewGuid().ToString()#>‘, ‘8a579654-de20-4189-80c4-cfc6979cac76‘, ‘‘, ‘‘, ‘‘, ‘fa fa-file‘, ‘‘, ‘iframe‘, 1, 0, 0, 0, 0, <#=i#>, ‘‘, 1, ‘‘, <#=DateTime.Now.ToString()#>, ‘9f2ec079-7d0f-4fe2-90ab-8b09a8302aba‘, ‘‘, ‘‘, ‘‘, ‘‘, ‘否‘); <##>

以上是关于T4模板循环生成插入语句的主要内容,如果未能解决你的问题,请参考以下文章

T4 编辑生成的代码作为其生成

项目模板和 C# 生成中的 T4

使用 t4 模板生成动态代码

T4模板:T4模板之菜鸟篇

T4 模板

如何使用从解决方案中现有基类继承的 T4 模板生成类?