Share via


GeneratorInit.TableScopedGenerationContext Property

Gets shared instancing information for the data generator and SQL table combination.

Namespace:  Microsoft.VisualStudio.TeamSystem.Data.DataGenerator
Assembly:  Microsoft.VisualStudio.TeamSystem.Data (in Microsoft.VisualStudio.TeamSystem.Data.dll)

Syntax

'Declaration
Public ReadOnly Property TableScopedGenerationContext As IDictionary(Of String, Object)
'Usage
Dim instance As GeneratorInit
Dim value As IDictionary(Of String, Object)

value = instance.TableScopedGenerationContext
public IDictionary<string, Object> TableScopedGenerationContext { get; }
public:
property IDictionary<String^, Object^>^ TableScopedGenerationContext {
    IDictionary<String^, Object^>^ get ();
}
public function get TableScopedGenerationContext () : IDictionary<String, Object>

Property Value

Type: System.Collections.Generic.IDictionary<String, Object>
An IDictionary that contains shared instancing information.

Remarks

This property is used for shared instancing. It returns a dictionary that is guaranteed to be the same instance for each data generator and SQL table combination. For more information, see An Overview of Data Generator Extensibility.

Permissions

See Also

Reference

GeneratorInit Class

GeneratorInit Members

Microsoft.VisualStudio.TeamSystem.Data.DataGenerator Namespace

Generator

IGenerator

GeneratorAttribute

Other Resources

How to: Create Custom Data Generators