IUpdateSqlGenerator.AppendStoredProcedureCall Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Appends SQL for calling a stored procedure.
public Microsoft.EntityFrameworkCore.Update.ResultSetMapping AppendStoredProcedureCall (System.Text.StringBuilder commandStringBuilder, Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand command, int commandPosition, out bool requiresTransaction);
abstract member AppendStoredProcedureCall : System.Text.StringBuilder * Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand * int * bool -> Microsoft.EntityFrameworkCore.Update.ResultSetMapping
Public Function AppendStoredProcedureCall (commandStringBuilder As StringBuilder, command As IReadOnlyModificationCommand, commandPosition As Integer, ByRef requiresTransaction As Boolean) As ResultSetMapping
Parameters
- commandStringBuilder
- StringBuilder
The builder to which the SQL should be appended.
- command
- IReadOnlyModificationCommand
The command that represents the stored procedure call.
- commandPosition
- Int32
The ordinal of this command in the batch.
- requiresTransaction
- Boolean
Returns whether the SQL appended must be executed in a transaction to work correctly.
Returns
The ResultSetMapping for the command.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Entity Framework