-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEF.Reverse.POCO.ttinclude
205 lines (182 loc) · 5.08 KB
/
EF.Reverse.POCO.ttinclude
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<#
fileManager.StartHeader();
// Copyright © Simon Hughes 2012
// v1.10.0
#>
// ReSharper disable RedundantUsingDirective
// ReSharper disable DoNotCallOverridableMethodsInConstructor
// ReSharper disable InconsistentNaming
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity;
using System.Data.Entity.ModelConfiguration;
<# if(AddWcfDataAttributes) { #>using System.Runtime.Serialization;
<# } #>
//using DatabaseGeneratedOption = System.ComponentModel.DataAnnotations.DatabaseGeneratedOption;
namespace <#= Namespace #>
{
<# fileManager.StartNewFile("I" + DbContextName + ".cs"); #>
<# if(!GenerateSeparateFiles) { #>
// ************************************************************************
// Unit of work
<# } #>
public interface I<#=DbContextName#> : IDisposable
{
<#
foreach(Table tbl in from t in tables.OrderBy(x => x.NameHumanCase) select t)
{
#>
IDbSet<<#=tbl.NameHumanCase#>> <#=tbl.NameHumanCase#> { get; set; } // <#=tbl.Name#>
<# } #>
int SaveChanges();
}
<# fileManager.StartNewFile(DbContextName + ".cs"); #>
<# if(!GenerateSeparateFiles) { #>
// ************************************************************************
// Database context
<# } #>
public <# if(MakeClassesPartial) { #>partial <# } #>class <#=DbContextName#> : DbContext, I<#=DbContextName#>
{
<#
foreach(Table tbl in from t in tables.OrderBy(x => x.NameHumanCase) select t)
{
#>
public IDbSet<<#=tbl.NameHumanCase#>> <#=tbl.NameHumanCase#> { get; set; } // <#=tbl.Name#>
<# } #>
static <#=DbContextName#>()
{
Database.SetInitializer<<#=DbContextName#>>(null);
}
public <#=DbContextName#>()
: base("Name=<#=ConnectionStringName#>")
{
}
public <#=DbContextName#>(string connectionString) : base(connectionString)
{
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
<#
foreach(Table tbl in from t in tables.OrderBy(x => x.NameHumanCase) select t)
{
#>
modelBuilder.Configurations.Add(new <#=tbl.NameHumanCase#>Configuration());
<# } #>
}
}
<# if(!GenerateSeparateFiles) { #>
// ************************************************************************
// POCO classes
<# } #>
<#
foreach(Table tbl in from t in tables.OrderBy(x => x.NameHumanCase) select t)
{
#>
<# fileManager.StartNewFile(tbl.NameHumanCase + ".cs"); #>
// <#=tbl.Name#>
<# if(AddWcfDataAttributes) { #> [DataContract<#=ExtraWcfDataContractAttributes#>]
<# } #>
public <# if(MakeClassesPartial) { #>partial <# } #>class <#=tbl.NameHumanCase#>
{
<# int DataMemberOrder = 1;
foreach(Column col in tbl.Columns.OrderBy(x => x.Ordinal))
{
#>
<# if(AddWcfDataAttributes) { #> [DataMember(Order = <#=DataMemberOrder++#>, IsRequired = <#=col.IsNullable ? "false" : "true"#>)]
<# } #>
<#=col.Entity #>
<# if(AddWcfDataAttributes) { #>
<# } #>
<# } #>
<#
if(tbl.ReverseNavigationProperty.Count() > 0)
{
#>
// Reverse navigation
<#
foreach(string s in tbl.ReverseNavigationProperty)
{
#>
<#=s #>;
<# } } #>
<# if(tbl.HasForeignKey) { #>
// Foreign keys
<#
foreach(Column col in from c in tbl.Columns.OrderBy(x => x.Ordinal) where c.EntityFk != null select c)
{
#>
<#=col.EntityFk #>
<# } } #>
<#
if(tbl.Columns.Where(c => c.Default != string.Empty).Count() > 0 || tbl.ReverseNavigationCtor.Count() > 0)
{
#>
public <#=tbl.NameHumanCase#>()
{
<#
foreach(Column col in tbl.Columns.OrderBy(x => x.Ordinal).Where(c => c.Default != string.Empty))
{
#>
<#=col.PropertyNameHumanCase #> = <#=col.Default #>;
<# } #>
<#
foreach(string s in tbl.ReverseNavigationCtor)
{
#>
<#=s #>
<# } #>
}
<# } #>
}
<# } #>
<# if(!GenerateSeparateFiles) { #>
// ************************************************************************
// POCO Configuration
<# } #>
<#
foreach(Table tbl in tables.OrderBy(x => x.NameHumanCase))
{
#>
<# fileManager.StartNewFile(tbl.NameHumanCase + "Configuration.cs"); #>
// <#=tbl.Name#>
internal <# if(MakeClassesPartial) { #>partial <# } #>class <#=tbl.NameHumanCase#>Configuration : EntityTypeConfiguration<<#=tbl.NameHumanCase#>>
{
public <#=tbl.NameHumanCase#>Configuration()
{
ToTable("<#=tbl.Schema#>.<#=tbl.Name#>");
HasKey(<#=tbl.PrimaryKeyNameHumanCase()#>);
<#
foreach(Column col in tbl.Columns.OrderBy(x => x.Ordinal))
{
#>
<#=col.Config #>
<# } #>
<#
if(tbl.ReverseNavigationConfiguration.Count() > 0)
{
#>
// Reverse navigation
<#
foreach(string s in tbl.ReverseNavigationConfiguration)
{
#>
<#=s #>;
<# } } #>
<# if(tbl.HasForeignKey) { #>
// Foreign keys
<#
foreach(Column col in from c in tbl.Columns.OrderBy(x => x.Ordinal) where c.ConfigFk != null select c)
{
#>
<#=col.ConfigFk #>
<# } } #>
}
}
<# } #>
<# fileManager.StartFooter(); #>
}
<# fileManager.EndBlock();
if(GenerateSeparateFiles)
fileManager.Process(); #>