I have a .NET core class library from which I want to reference Entity Framework 6.1.3. Here is my project.json:...{
"version": "1.0.0-*",
"dependencies": {
"NETStandard.Library": "1.5.0-rc2-24027",
"EntityFramework": "6.1.3"
},
"framew...
This one is driving me crazy....If I create a .NET Core Console App in VS2015, making no changes it builds and runs as expected....When I add Entity Framework RC2 by adding a dependency in project.json...{
"version": "1.0.0-*",
"buildOptions": {
"...
I try to create an EntityFramework Core's model with an existing database (doc here : ...https://docs.efproject.net/en/latest/platforms/aspnetcore/existing-db.html...) but I have an error....When I try the ...Package Manager... method, I have the error :....
I'm trying to separate the models into their own project for use in a xamarin cross-platform application using the new .net core class library. The issue i'm being presented with is:...My solution structure is as follows:...My class library project.json i...