We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a14757 commit 3794624Copy full SHA for 3794624
1 file changed
Stores/SqlServer/Cleipnir.ResilientFunctions.SqlServer/SqlServerMessageStore.cs
@@ -131,6 +131,8 @@ INSERT INTO {_tablePrefix}_Messages
131
command.Parameters.AddWithValue($"@Position{i}", position);
132
command.Parameters.AddWithValue($"@Content{i}", content);
133
}
134
+ foreach (var (value, name) in interuptsSql.Parameters)
135
+ command.Parameters.AddWithValue(name, value);
136
137
await command.ExecuteNonQueryAsync();
138
0 commit comments