Skip to content

Commit 09678e8

Browse files
(AzureCXP) fixes MicrosoftDocs/azure-docs#109936
Correcting the example syntax that is present for Isolated process in SQL triggers. Updating to [Function("ToDoTrigger")] from [FunctionName("ToDoTrigger")]
1 parent 423d469 commit 09678e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/functions-bindings-azure-sql-trigger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ namespace AzureSQL.ToDo
142142
{
143143
public static class ToDoTrigger
144144
{
145-
[FunctionName("ToDoTrigger")]
145+
[Function("ToDoTrigger")]
146146
public static void Run(
147147
[SqlTrigger("[dbo].[ToDo]", "SqlConnectionString")]
148148
IReadOnlyList<SqlChange<ToDoItem>> changes,

0 commit comments

Comments
 (0)