博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
t4模板的认识
阅读量:4970 次
发布时间:2019-06-12

本文共 2355 字,大约阅读时间需要 7 分钟。

1

输出类
<#=codeStringGenerator.EntityClassOpening(entity)#>

public string EntityClassOpening(EntityType entity)

{
return string.Format(
CultureInfo.InvariantCulture,
"{0} {1}partial class {2}View{3}",// public partial class sysFunction
Accessibility.ForType(entity),
_code.SpaceAfter(_code.AbstractOption(entity)),
_code.Escape(entity),
_code.StringBefore(" : ", _typeMapper.GetTypeName(entity.BaseType)));
}

 

2 构造函数

public <#=code.Escape(entity)#>()

{
<#
foreach (var edmProperty in propertiesWithDefaultValues)
{
#>
this.<#=code.Escape(edmProperty)#> = <#=typeMapper.CreateLiteral(edmProperty.DefaultValue)#>;
<#
}

foreach (var navigationProperty in collectionNavigationProperties)

{
#>
this.<#=code.Escape(navigationProperty)#> = new HashSet<<#=typeMapper.GetTypeName
(navigationProperty.ToEndMember.GetEntityType())#>>();
<#
}

foreach (var complexProperty in complexProperties)

{
#>
this.<#=code.Escape(complexProperty)#> = new <#=typeMapper.GetTypeName(complexProperty.TypeUsage)#>();
<#
}
#>
}

 

3 命名空间

<#=codeStringGenerator.UsingDirectives(inHeader: false)#>

 

using Model;

/// <summary>
/// 数据层
/// 成东
/// </summary>

<#=codeStringGenerator.EntityClassOpening(entity)#>

4生成属性

<#=codeStringGenerator.EntityClassOpening(entity)#>

{

#region 此表的特殊操作

#endregion

<#
var propertiesWithDefaultValues = typeMapper.GetPropertiesWithDefaultValues(entity);
var collectionNavigationProperties = typeMapper.GetCollectionNavigationProperties(entity);
var complexProperties = typeMapper.GetComplexProperties(entity);

if (propertiesWithDefaultValues.Any() || collectionNavigationProperties.Any() || complexProperties.Any())

{
#>

<#

}

var simpleProperties = typeMapper.GetSimpleProperties(entity);

if (simpleProperties.Any())
{
foreach (var edmProperty in simpleProperties)
{
#>
<#=codeStringGenerator.Property(edmProperty)#>
<#
}
}

if (complexProperties.Any())

{
#>

<#

foreach(var complexProperty in complexProperties)
{
#>
<#=codeStringGenerator.Property(complexProperty)#>
<#
}
}

var navigationProperties = typeMapper.GetNavigationProperties(entity);

if (navigationProperties.Any())
{
#>

<#

foreach (var navigationProperty in navigationProperties)
{
#>
<#=codeStringGenerator.NavigationProperty(navigationProperty)#>
<#
}
}
#>

}

4 生成引用
<#=codeStringGenerator.UsingDirectives(inHeader: false)#>
下面我们可以自己加别的引用
using System;

 

转载于:https://www.cnblogs.com/cdaq/p/4467583.html

你可能感兴趣的文章
简单权限管理系统原理浅析
查看>>
springIOC第一个课堂案例的实现
查看>>
求输入成绩的平均分
查看>>
php PDO (转载)
查看>>
wordpress自动截取文章摘要代码
查看>>
[置顶] 一名优秀的程序设计师是如何管理知识的?
查看>>
scanf和gets
查看>>
highcharts 图表实例
查看>>
ubuntu下如何查看用户登录及系统授权相关信息
查看>>
秋季学期学习总结
查看>>
SpringBoot 优化内嵌的Tomcat
查看>>
【LaTeX】E喵的LaTeX新手入门教程(1)准备篇
查看>>
highcharts曲线图
查看>>
extjs动态改变样式
查看>>
PL/SQL Developer 查询的数据有乱码或者where 字段名=字段值 查不出来数据
查看>>
宏定义
查看>>
笔记:git基本操作
查看>>
生成php所需要的APNS Service pem证书的步骤
查看>>
JavaWeb之JSON
查看>>
HOT SUMMER 每天都是不一样,积极的去感受生活 C#关闭IE相应的窗口 .
查看>>