Skip to content

Commit 9a3771b

Browse files
dmealingclaude
andcommitted
docs(csharp): refresh stale @dbColumn comment to @column in CSharpNaming
Minor finding from the C# source-v2 final reviewer: the comment in CSharpNaming.Column() described the override attr as @dbColumn, but the rename to @column landed in commit 1727b33. Runtime behavior is correct; this was a comment-only staleness. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 74bdafe commit 9a3771b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server/csharp/MetaObjects.Codegen/CSharpNaming.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public static string Pascal(string name) =>
5757
public static string Table(MetaObject entity) => entity.DbTable ?? entity.Name;
5858

5959
/// <summary>
60-
/// The DB column name for a field: the <c>@dbColumn</c> override, else the raw
60+
/// The DB column name for a field: the <c>@column</c> override, else the raw
6161
/// field name. Shared so the schema DDL and the [Column] annotation agree.
6262
/// </summary>
6363
public static string Column(MetaField field) => field.DbColumn ?? field.Name;

0 commit comments

Comments
 (0)