OutputGeneratorActivity.ProcessOutputGenerator<T> 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.]

Returns the output produced by the output generator with the specified output generator type name.

Namespace:  Microsoft.Data.Entity.Design.DatabaseGeneration.OutputGenerators
Assembly:  Microsoft.Data.Entity.Design.DatabaseGeneration (in Microsoft.Data.Entity.Design.DatabaseGeneration.dll)

Syntax

'Declaration
Protected Function ProcessOutputGenerator(Of T As Class) ( _
    outputGeneratorTypeName As String, _
    context As NativeActivityContext, _
    inputs As IDictionary(Of String, Object) _
) As T
'Usage
Dim outputGeneratorTypeName As String 
Dim context As NativeActivityContext 
Dim inputs As IDictionary(Of String, Object)
Dim returnValue As T

returnValue = Me.ProcessOutputGenerator(outputGeneratorTypeName, _
    context, inputs)
protected T ProcessOutputGenerator<T>(
    string outputGeneratorTypeName,
    NativeActivityContext context,
    IDictionary<string, Object> inputs
)
where T : class
protected:
generic<typename T>
where T : ref class
T ProcessOutputGenerator(
    String^ outputGeneratorTypeName, 
    NativeActivityContext^ context, 
    IDictionary<String^, Object^>^ inputs
)
member ProcessOutputGenerator : 
        outputGeneratorTypeName:string * 
        context:NativeActivityContext * 
        inputs:IDictionary<string, Object> -> 'T  when 'T : not struct
JScript does not support generic types and methods.

Type Parameters

  • T
    The type of the output.

Parameters

  • outputGeneratorTypeName
    Type: System.String
    The name of the type of the output generator.

Return Value

Type: T
The output produced by the output generator along with the specified output generator type name.

See Also

Reference

OutputGeneratorActivity Class

Microsoft.Data.Entity.Design.DatabaseGeneration.OutputGenerators Namespace