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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.VisualStudio.TeamSystem.Data.DataGenerator Namespace