zoukankan      html  css  js  c++  java
  • Package Manager Console 向VS2010安装 EntityFramework

    尝试用VS2010--工具--Library Package Manager--Add Library Package Reference的online搜索 EntityFramework,

    再找到的结果中,点选该Package的Install,

    却提示错误:

    "This package (or one of its dependencies) contains powershell scripts and needs to be installed from the package manager console."

    根据提示改用Package Manager Console来安装,

    打开VS2010--工具--Library Package Manager--Package Manager Console,

    PM > get-package -remote -filter entityframework

    Id                         Version                    Description             
    --                         -------                    -----------             
    EFCodeFirst                1.0                        Legacy package, Code F...
    EntityFramework            4.1.10311.0                DbContext API and Code...
    EntityFramework.Sample     4.1                        This sample blog model...
    EntityFramework.SqlServ... 4.1.8482.1                 Allows SQL Server Comp...
    EntityFrameworkProfiler    1.0.0.836                  EntityFramework Profil...

    PM > install-package -id EntityFramework -Version 4.1.10311.0

    You are downloading EntityFramework from Microsoft, the license agreement to which is available athttp://go.microsoft.com/fwlink/?LinkID=211009. Check the package for additional dependencies, which may come with their own license agreement(s). Your use of the package and dependencies constitutes your acceptance of their license agreements. If you do not accept the license agreement(s), then delete the relevant components from your device.
    Successfully installed 'EntityFramework 4.1.10311.0'
    Successfully added 'EntityFramework 4.1.10311.0' to .......

    VS2010安装 EntityFramework

    如果在Add Library Package Reference安装失败只需三步 :)

    打开VS2010--工具--Library Package Manager--Package Manager Console,

    PM > get-package -remote -filter entityframework(在PM>输入get-package -remote -filter entityframework)

    PM > install-package -id EntityFramework -Version 4.1.10311.0(同上)

  • 相关阅读:
    学习redis-安装和基本一些命令
    Eclipse启动报错Java was started but returned exit code=13
    踩过的坑系列之InputStream.read(byte[])方法
    <<深入Java虚拟机>>-虚拟机类加载机制-学习笔记
    <<深入Java虚拟机>>-第三章-垃圾收集器与内存分配策略-学习笔记
    <<深入Java虚拟机>>-第二章-Java内存区域-学习笔记
    创建线程的两种方式比较Thread VS Runnable
    Java设计模式之--代理模式学习
    shell脚本中$参数的介绍
    (转)使用DataTime这个类来获取当前的时间
  • 原文地址:https://www.cnblogs.com/zhengrunqiang/p/2777244.html
Copyright © 2011-2022 走看看