SqlServerMigrationSqlGenerator::GenerateProcedureBody Method

[This page is specific to the Entity Framework version 6. The latest version is available as the 'Entity Framework' NuGet package. For more information about Entity Framework, see msdn.com/data/ef.]

Generates the SQL body for a stored procedure.

Namespace:  System.Data.Entity.SqlServer
Assembly:  EntityFramework.SqlServer (in EntityFramework.SqlServer.dll)

public:
virtual String^ GenerateProcedureBody(
	ICollection<DbModificationCommandTree^>^ commandTrees, 
	String^ rowsAffectedParameter, 
	String^ providerManifestToken
) override

Parameters

commandTrees
Type: System.Collections.Generic::ICollection<DbModificationCommandTree>
The command trees representing the commands for an insert, update or delete operation.
rowsAffectedParameter
Type: System::String
The rows affected parameter name.
providerManifestToken
Type: System::String
The provider manifest token.

Return Value

Type: System::String
The SQL body for the stored procedure.
Show: