Skip to content

Commit a86c868

Browse files
authored
Apply the "override" access modifier to a column.
Apply the "override" access modifier to a column.
1 parent 7436a97 commit a86c868

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

EntityFramework.Reverse.POCO.Generator/Database.tt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,9 +218,9 @@
218218
//if (column.IsPrimaryKey && table.NameHumanCase.Equals("SomeTable", StringComparison.InvariantCultureIgnoreCase))
219219
// column.Hidden = true;
220220

221-
// Apply the "override" access modifier To a specific column.
222-
//if (column.NameHumanCase == "id")
223-
// column.OverrideModifier = true; // public override long id { get; set; }
221+
// Apply the "override" access modifier to a specific column.
222+
//if (column.NameHumanCase == "id")
223+
// column.OverrideModifier = true; // public override long id { get; set; }
224224

225225
// Perform Enum property type replacement
226226
var enumDefinition = EnumsDefinitions.FirstOrDefault(e =>

0 commit comments

Comments
 (0)