views:

108

answers:

1

Ho to create ddl (database creation swl) from .edmx file. By using command lime tool.

A: 

We are not aware about such tool. However, you can write your own console application that will:
1. Create an ObjectContext.
2. Load metadata from the .edmx file.
3. Generate DDL script using the CreateDatabaseScript() method.
4. Save this script to file.

Devart