Skip to content

Commit a9b6269

Browse files
committed
Correct comments about schema _ table name
1 parent 47e82a6 commit a9b6269

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

BuildTT/BuildTT.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ private static void CreateTT(string generatorRoot, string ttRoot)
212212
// Schema *****************************************************************************************************************************
213213
// If there are multiple schemas, then the table name is prefixed with the schema, except for dbo.
214214
// Ie. dbo.hello will be Hello.
215-
// abc.hello will be AbcHello.
215+
// abc.hello will be Abc_Hello.
216216
Settings.PrependSchemaName = true; // Control if the schema name is prepended to the table name
217217
218218
// Table Suffix ***********************************************************************************************************************

EntityFramework.Reverse.POCO.Generator/Database NorthwindSqlCe40.tt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@
196196
// Schema *****************************************************************************************************************************
197197
// If there are multiple schemas, then the table name is prefixed with the schema, except for dbo.
198198
// Ie. dbo.hello will be Hello.
199-
// abc.hello will be AbcHello.
199+
// abc.hello will be Abc_Hello.
200200
Settings.PrependSchemaName = true; // Control if the schema name is prepended to the table name
201201

202202
// Table Suffix ***********************************************************************************************************************

EntityFramework.Reverse.POCO.Generator/Database.tt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@
196196
// Schema *****************************************************************************************************************************
197197
// If there are multiple schemas, then the table name is prefixed with the schema, except for dbo.
198198
// Ie. dbo.hello will be Hello.
199-
// abc.hello will be AbcHello.
199+
// abc.hello will be Abc_Hello.
200200
Settings.PrependSchemaName = true; // Control if the schema name is prepended to the table name
201201

202202
// Table Suffix ***********************************************************************************************************************

EntityFramework.Reverse.POCO.Generator/EF.Reverse.POCO.v3.ttinclude

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@
164164
// Schema *****************************************************************************************************************************
165165
// If there are multiple schemas, then the table name is prefixed with the schema, except for dbo.
166166
// Ie. dbo.hello will be Hello.
167-
// abc.hello will be AbcHello.
167+
// abc.hello will be Abc_Hello.
168168
public static bool PrependSchemaName = true; // Control if the schema name is prepended to the table name
169169
public static string DefaultSchema = null; // Set via DatabaseReader.DefaultSchema()
170170
public static string DefaultCollation = null; // Set via DatabaseReader.DefaultCollation()

Generator/Settings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public static class Settings
138138
// Schema *****************************************************************************************************************************
139139
// If there are multiple schemas, then the table name is prefixed with the schema, except for dbo.
140140
// Ie. dbo.hello will be Hello.
141-
// abc.hello will be AbcHello.
141+
// abc.hello will be Abc_Hello.
142142
public static bool PrependSchemaName = true; // Control if the schema name is prepended to the table name
143143
public static string DefaultSchema = null; // Set via DatabaseReader.DefaultSchema()
144144
public static string DefaultCollation = null; // Set via DatabaseReader.DefaultCollation()

Tester.Integration.Ef6/Northwind.tt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@
188188
// Schema *****************************************************************************************************************************
189189
// If there are multiple schemas, then the table name is prefixed with the schema, except for dbo.
190190
// Ie. dbo.hello will be Hello.
191-
// abc.hello will be AbcHello.
191+
// abc.hello will be Abc_Hello.
192192
Settings.PrependSchemaName = true; // Control if the schema name is prepended to the table name
193193

194194
// Table Suffix ***********************************************************************************************************************

Tester.Integration.EfCore2/Database.tt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@
188188
// Schema *****************************************************************************************************************************
189189
// If there are multiple schemas, then the table name is prefixed with the schema, except for dbo.
190190
// Ie. dbo.hello will be Hello.
191-
// abc.hello will be AbcHello.
191+
// abc.hello will be Abc_Hello.
192192
Settings.PrependSchemaName = true; // Control if the schema name is prepended to the table name
193193

194194
// Table Suffix ***********************************************************************************************************************

Tester.Integration.EfCore3/ContextHasSameNameAsDb/Fred.tt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@
183183
// Schema *****************************************************************************************************************************
184184
// If there are multiple schemas, then the table name is prefixed with the schema, except for dbo.
185185
// Ie. dbo.hello will be Hello.
186-
// abc.hello will be AbcHello.
186+
// abc.hello will be Abc_Hello.
187187
Settings.PrependSchemaName = true; // Control if the schema name is prepended to the table name
188188

189189
// Table Suffix ***********************************************************************************************************************

Tester.Integration.EfCore3/Fred.tt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@
190190
// Schema *****************************************************************************************************************************
191191
// If there are multiple schemas, then the table name is prefixed with the schema, except for dbo.
192192
// Ie. dbo.hello will be Hello.
193-
// abc.hello will be AbcHello.
193+
// abc.hello will be Abc_Hello.
194194
Settings.PrependSchemaName = true; // Control if the schema name is prepended to the table name
195195

196196
// Table Suffix ***********************************************************************************************************************

Tester.Integration.EfCore5/EnumOnly.tt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@
192192
// Schema *****************************************************************************************************************************
193193
// If there are multiple schemas, then the table name is prefixed with the schema, except for dbo.
194194
// Ie. dbo.hello will be Hello.
195-
// abc.hello will be AbcHello.
195+
// abc.hello will be Abc_Hello.
196196
Settings.PrependSchemaName = true; // Control if the schema name is prepended to the table name
197197

198198
// Table Suffix ***********************************************************************************************************************

0 commit comments

Comments
 (0)