DbProviderServices.CreateDatabaseScript Method (String, StoreItemCollection)
Generates a data definition language (DDL script that creates schema objects (tables, primary keys, foreign keys) based on the contents of the StoreItemCollection parameter and targeted for the version of the database corresponding to the provider manifest token.
Assembly: EntityFramework (in EntityFramework.dll)
public string CreateDatabaseScript( string providerManifestToken, StoreItemCollection storeItemCollection )
Parameters
- providerManifestToken
-
Type:
System.String
The provider manifest token identifying the target version.
- storeItemCollection
-
Type:
System.Data.Entity.Core.Metadata.Edm.StoreItemCollection
The structure of the database.
Return Value
Type: System.StringA DDL script that creates schema objects based on the contents of the StoreItemCollection parameter and targeted for the version of the database corresponding to the provider manifest token.
Individual statements should be separated using database-specific DDL command separator. It is expected that the generated script would be executed in the context of existing database with sufficient permissions, and it should not include commands to create the database, but it may include commands to create schemas and other auxiliary objects such as sequences, etc.