This repository was archived by the owner on Nov 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathRepository.tt
More file actions
282 lines (250 loc) · 9.66 KB
/
Copy pathRepository.tt
File metadata and controls
282 lines (250 loc) · 9.66 KB
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
<#@ template debug="false" hostspecific="true" language="C#" #>
<#@ output extension=".Generated.cs" #>
<#@ assembly name="System.Core" #>
<#@ assembly name="EnvDTE" #>
<#@ assembly name="System.Data" #>
<#@ import namespace="System.IO" #>
<#@ import namespace="System.Text" #>
<#@ import namespace="EnvDTE" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ include file="Settings.ttinclude" once="true"#><##>
<#@ include file="..\..\T4SSDT.ttinclude" once="true"#><##>
//------------------------------------------------------------------------------
// <auto-generated>
// T4SSDT Data access layer code generator.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.CodeDom.Compiler;
namespace Model
{
<#
var hostServiceProvider = (IServiceProvider)this.Host;
var dte = (DTE)hostServiceProvider.GetService(typeof(DTE));
TSqlModel model = null;
foreach (Project project in dte.Solution)
{
if (project.Kind == "{00d1a9c2-b5f0-4af3-8072-f6c62b433612}")
{
model = GenerateModelFromProjectItems(project.ProjectItems);
break;
}
}
if (null == model)
Error("Database project was not found!");
/****************************************** REPOSITORY INTERFACE ***************************************/
void RenderCrudInterface(string name, ColumnInfo[] columns, ColumnInfo[] primaryKey)
{
#>
int Create(<#=name#> obj);
<# if (null != primaryKey) {#>
int Update(<#=name#> obj);
int Delete<#=name#>(<#=string.Join(", ", primaryKey.Select(c => c.TypeName + " " + ToCamelCase(c.FieldName)))#>);
bool Get<#=name#>ById(<#=string.Join(", ", primaryKey.Select(c => c.TypeName + " " + ToCamelCase(c.FieldName)))#>, out <#=name#> obj);
<# }
}
void RenderViewAccessorInterface(string name, ColumnInfo[] columns, ColumnInfo[] primaryKey)
{
#>
IEnumerable<<#=name#>> Get<#=name#>();
<#
}
void RenderProcedureCallerInterface(string name, ParameterInfo[] parameters)
{
#>
int <#=name#>(<#=string.Join(", ",
parameters.Select(p => (p.IsOutput ? "ref " : "") + p.TypeName + " " + p.Name))#>);
<#
}
#>
[GeneratedCode("T4SSDT", "1.0")]
public partial interface IRepository
{
<#
ForEachTable(model, RenderCrudInterface, ExcludeFromPOCO.Union(ExcludeFromCRUD));
ForEachView(model, RenderViewAccessorInterface, ExcludeFromPOCO.Union(ExcludeFromCRUD));
ForEachStoredProcedure(model, RenderProcedureCallerInterface, ExcludeFromCRUD);
#>
}
<#
/****************************************** REPOSITORY IMPLEMENTATION **********************************/
void RenderCrudMethods(string name, ColumnInfo[] columns, ColumnInfo[] primaryKey)
{
IEnumerable<ColumnInfo> dataColumns = columns.Where(c => !c.IsIdentity);
#>
public int Create(<#=name#> obj)
{
using (SqlConnection connection = new SqlConnection(_connectionString))
{
connection.Open();
string cmdText = @"INSERT INTO <#=name#> VALUES (<#=string.Join(", ", dataColumns.Select(c => "@" + c.FieldName))#>)";
SqlCommand cmd = new SqlCommand(cmdText, connection);
cmd.Parameters.AddRange(new[]
{
<# foreach (ColumnInfo column in dataColumns) { #>
new SqlParameter("@<#=column.FieldName#>", obj.<#=column.FieldName#>),
<# } #>
});
using (cmd)
{
return cmd.ExecuteNonQuery();
}
}
}
<# if (null != primaryKey) {#>
public int Update(<#=name#> obj)
{
using (SqlConnection connection = new SqlConnection(_connectionString))
{
connection.Open();
string cmdText = @"UPDATE <#=name#>
SET <#=string.Join(", ", dataColumns.Where(c => !primaryKey.Contains(c)).Select(c => $"{c.FieldName} = @{c.FieldName}"))#>
WHERE <#=string.Join(", ", primaryKey.Select(c => $"{c.FieldName} = @{c.FieldName}"))#>";
SqlCommand cmd = new SqlCommand(cmdText, connection);
cmd.Parameters.AddRange(new[]
{
<# foreach (ColumnInfo column in dataColumns) { #>
new SqlParameter("@<#=column.FieldName#>", obj.<#=column.FieldName#>),
<# } #>
});
using (cmd)
{
return cmd.ExecuteNonQuery();
}
}
}
public int Delete<#=name#>(<#=string.Join(", ", primaryKey.Select(c => c.TypeName + " " + ToCamelCase(c.FieldName)))#>)
{
using (SqlConnection connection = new SqlConnection(_connectionString))
{
connection.Open();
string cmdText = @"DELETE FROM <#=name#> WHERE <#=string.Join(" AND ", primaryKey.Select(c => $"{c.FieldName} = @{c.FieldName}"))#>";
SqlCommand cmd = new SqlCommand(cmdText, connection);
cmd.Parameters.AddRange(new[]
{
<# foreach (ColumnInfo column in primaryKey) { #>
new SqlParameter("@<#=column.FieldName#>", <#=ToCamelCase(column.FieldName)#>),
<# } #>
});
using (cmd)
{
return cmd.ExecuteNonQuery();
}
}
}
public bool Get<#=name#>ById(<#=string.Join(", ", primaryKey.Select(c => c.TypeName + " " + ToCamelCase(c.FieldName)))#>, out <#=name#> obj)
{
using (SqlConnection connection = new SqlConnection(_connectionString))
{
connection.Open();
string cmdText = @"
SELECT <#=string.Join(", ", columns.Select(c => c.FieldName))#>
FROM <#=name#>
WHERE <#=string.Join(" AND ", primaryKey.Select(c => $"{c.FieldName} = @{c.FieldName}"))#>";
SqlCommand cmd = new SqlCommand(cmdText, connection);
cmd.Parameters.AddRange(new[]
{
<# foreach (ColumnInfo column in primaryKey) { #>
new SqlParameter("@<#=column.FieldName#>", <#=ToCamelCase(column.FieldName)#>),
<# } #>
});
using (cmd)
{
obj = new <#=name#>();
IDataReader reader = cmd.ExecuteReader();
if (reader.NextResult())
{
<# foreach (ColumnInfo column in columns) { #>
obj.<#=column.FieldName#> = (<#=column.TypeName#>)reader["<#=column.FieldName#>"];
<# } #>
}
else
return false;
return true;
}
}
}
<# }
}
void RenderViewAccessor(string name, ColumnInfo[] columns, ColumnInfo[] primaryKey)
{
#>
public IEnumerable<<#=name#>> Get<#=name#>()
{
using (SqlConnection connection = new SqlConnection(_connectionString))
{
connection.Open();
string cmdText = @"SELECT <#=string.Join(", ", columns.Select(c => c.FieldName))#> FROM <#=name#>";
SqlCommand cmd = new SqlCommand(cmdText, connection);
using (cmd)
{
IDataReader reader = cmd.ExecuteReader();
while (reader.NextResult())
{
<#=name#> obj = new <#=name#>();
<# foreach (ColumnInfo column in columns) { #>
obj.<#=column.FieldName#> = (<#=column.TypeName#>)reader["<#=column.FieldName#>"];
<# } #>
yield return obj;
}
}
}
}
<#
}
void RenderProcedureCaller(string name, ParameterInfo[] parameters)
{
#>
public int <#=name#>(<#=string.Join(", ", parameters.Select(p => (p.IsOutput ? "ref " : "") + p.TypeName + " " + ToCamelCase(p.Name)))#>)
{
using (SqlConnection connection = new SqlConnection(_connectionString))
{
connection.Open();
SqlCommand cmd = new SqlCommand("<#=name#>", connection);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddRange(new[]
{
<# foreach (ParameterInfo p in parameters) { #>
new SqlParameter("@<#=p.Name#>", <#=ToCamelCase(p.Name)#>)<#=p.IsOutput ? " { Direction = ParameterDirection.InputOutput }" : string.Empty#>,
<# } #>
});
using (cmd)
{
int retVal = cmd.ExecuteNonQuery();
<# foreach (ParameterInfo p in parameters.Where(p => p.IsOutput)) { #>
<#=ToCamelCase(p.Name)#> = (<#=p.TypeName#>)cmd.Parameters["@<#=p.Name#>"].Value;
<# } #>
return retVal;
}
}
}
<#
}
#>
[GeneratedCode("T4SSDT", "1.0")]
public partial class SqlRepository : IRepository
{
private readonly string _connectionString;
private readonly string _readOnlyConnectionString;
public SqlRepository(string connectionString)
{
_connectionString = connectionString;
_readOnlyConnectionString = connectionString;
}
public SqlRepository(string connectionString, string readOnlyConnectionString)
{
_connectionString = connectionString;
_readOnlyConnectionString = readOnlyConnectionString;
}
<#
ForEachTable(model, RenderCrudMethods, ExcludeFromPOCO.Union(ExcludeFromCRUD));
ForEachView(model, RenderViewAccessor, ExcludeFromPOCO.Union(ExcludeFromCRUD));
ForEachStoredProcedure(model, RenderProcedureCaller, ExcludeFromCRUD);
#>
}
}
<# model.Dispose(); #>