ObjectContext.CreateDatabaseScript Method

Definition

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.

Applies to

See also