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

Popular posts from this blog

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -

Kivy: Swiping (Carousel & ScreenManager) -