Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ migrationBuilder.Sql(
@LastName nvarchar(50),
@FirstName nvarchar(50)
AS
RETURN @LastName + @FirstName;')");
SELECT @LastName + @FirstName;')");
Copy link

Copilot AI Apr 14, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The stored procedure now uses SELECT (good), but the example will return a single unnamed column and concatenates without a separator (e.g., SmithJohn). Consider adding a space between parts and giving the selected expression a column alias (e.g., AS FullName) so the result is clearer for readers and tools.

Suggested change
SELECT @LastName + @FirstName;')");
SELECT @LastName + N'' '' + @FirstName AS FullName;')");

Copilot uses AI. Check for mistakes.
```

> [!TIP]
Expand Down
Loading