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

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -