We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents acbebc6 + a86c868 commit 77d6f1eCopy full SHA for 77d6f1e
EntityFramework.Reverse.POCO.Generator/Database.tt
@@ -217,6 +217,10 @@
217
// Remove column from poco class as it will be inherited from a base class
218
//if (column.IsPrimaryKey && table.NameHumanCase.Equals("SomeTable", StringComparison.InvariantCultureIgnoreCase))
219
// column.Hidden = true;
220
+
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; }
224
225
// Perform Enum property type replacement
226
var enumDefinition = EnumsDefinitions.FirstOrDefault(e =>
0 commit comments