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

timeout - Handshake_timeout on RabbitMQ using python and pika from remote vm -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

c# - Search and Add Comment with OpenXML for Word -