Entity Framework database access

0

I have a C # .NET application developed with Entity Framework, but I can not access the database with the following message:

  

The underlying pdovider failed to Open.

I have only the application, but no local or remote database, how would I export the Entity Framework modeling in the application for SQL Express / Server?

    
asked by anonymous 28.05.2017 / 16:34

1 answer

0

You will need a database.

EF has the Code-First option that creates the database for you.

Read more ...

link

Abs

    
28.05.2017 / 18:58