ObjectContext.CreateDatabaseScript Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Generates a data definition language (DDL) script that creates schema objects (tables, primary keys, foreign keys) for the metadata in the StoreItemCollection. The StoreItemCollection loads metadata from store schema definition language (SSDL) files.
public:
System::String ^ CreateDatabaseScript();
public string CreateDatabaseScript ();
member this.CreateDatabaseScript : unit -> string
Public Function CreateDatabaseScript () As String
Returns
A DDL script that creates schema objects for the metadata in the StoreItemCollection.
Remarks
Call CreateDatabaseScript to view the DDL script. Call CreateDatabase to execute the script.
Most of the work is delegated to the CreateDatabase method.
For more information, see Working with Data Definition Language.