SsdlToDdlActivity.DdlOutput Property
A Windows Workflow OutArgument<T> that specifies the data definition language (DDL) that is generated from the store schema definition language (SSDL) in the SsdlInput and ExistingSsdlInput properties.
Namespace: Microsoft.Data.Entity.Design.DatabaseGeneration.Activities
Assembly: Microsoft.Data.Entity.Design (in Microsoft.Data.Entity.Design.dll)
Syntax
'Declaration
Public Property DdlOutput As OutArgument(Of String)
Get
Set
'Usage
Dim instance As SsdlToDdlActivity
Dim value As OutArgument(Of String)
value = instance.DdlOutput
instance.DdlOutput = value
public OutArgument<string> DdlOutput { get; set; }
public:
property OutArgument<String^>^ DdlOutput {
OutArgument<String^>^ get ();
void set (OutArgument<String^>^ value);
}
function get DdlOutput () : OutArgument<String>
function set DdlOutput (value : OutArgument<String>)
Property Value
Type: System.Activities.OutArgument<String>
The data definition language (DDL) that is generated from store schema definition language (SSDL) in the SsdlInput and ExistingSsdlInput properties.
Remarks
The DDL that is generated will drop existing database objects (in the case where a database already exists) and create new ones. The DDL for dropping existing database objects is generated from the SSDL in the ExistingSsdlInput property. The DDL for creating new database objects is generated from the SSDL in the SsdlInput property.
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.Data.Entity.Design.DatabaseGeneration.Activities Namespace