All Questions
1 question
0
votes
1
answer
133
views
C# REPL Entity Framework .edmx
How to load entity framework in C# REPL in VS2015?
I am trying to do it like this:
var db = new Container("connectionstring");
db.Contacts.First();
I took connection string from web.config of my MVC ...