c# - Create Database from EDMX file in EF6 + PostGres -
i need create database (along schema) edmx file in entity framework 6 + postgres. i'm using npgsql.2.2.5.
i tried create using below code.
using(var ctx = new databasecontententities()){ ctx.createdatabase(); }
but giving me error message
createdatabase not supported provider
do npgsql support this, if yes please can tell me how can solve this.
thanks in advance.
Comments
Post a Comment