You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A bug exists in Microsoft.NET.Sdk.Functions starting with 4.1.0 (4.1.1 currently), where a function utilizing SQL output bindings will fail to start unless an additional CommandType = CommandType.TableDirect is added to the definition.
This issue is for tracking the correction of the issue.
Work around options:
Downgrade to <PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.0.1" />
Add CommandType = CommandType.TableDirect to SQL output bindings
Charles-Gagnon
changed the title
Tracking bug in microsoft.net.sdk.functions >=4.1.0
Errors with microsoft.net.sdk.functions >=4.1.0/>=3.1.0
Jun 8, 2022
Charles-Gagnon
changed the title
Errors with microsoft.net.sdk.functions >=4.1.0/>=3.1.0
Output binding errors with microsoft.net.sdk.functions >=4.1.0/>=3.1.0
Jun 8, 2022
A bug exists in Microsoft.NET.Sdk.Functions starting with 4.1.0 (4.1.1 currently), where a function utilizing SQL output bindings will fail to start unless an additional
CommandType = CommandType.TableDirect
is added to the definition.This issue is for tracking the correction of the issue.
Work around options:
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.0.1" />
CommandType = CommandType.TableDirect
to SQL output bindingsFixed
upgrade SQL bindings (Microsoft.Azure.WebJobs.Extensions.Sql) to >= 0.1.346-preview https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.Sql/0.1.346-preview
The text was updated successfully, but these errors were encountered: