c# - Make entity framework available in all projects -


i have solution 3 class library's, 1 main , 2 referenced main. installed entity framework 6 nuget , can use ok in main project. models etc in other project when add:

using system.data.entity; 

to top of other project error , cant use : dbcontext etc. when install via nuget on individual project basis?

thanks

you can manage nuget references single project or entire solution. right click on solution, click on "manage nuget packages solution..." install/remove/upgrade on entire solution.


Comments

Popular posts from this blog

serialization - Convert Any type in scala to Array[Byte] and back -

matplotlib support failed in PyCharm on OSX -

python - Matplotlib: TypeError: 'AxesSubplot' object is not callable -