- Get the update from Microsoft here. (updated with Update 4 link)
- Save the file to a folder.
- open the folder
- Pro tip – Shift + right-click the background of the folder and choose ‘Open command window here’
- in the command window type VS2013.4.exe /Layout
- (or VS2013.1.exe /Layout or VS2013.2.exe /Layout depending on your update)
- It will then ask you where you would like to save and extract the files.
- This step will take some time depending on your download speed. This is the step that adds time to the install when you choose the web installer.
- You will now see a folder with the update installer along with all the source files. You can now store this safe on a network share or your hard drive and update your installation of Visual Studio without downloading 2GB of files!
- This should work for any version of Visual Studio going forward.
比较使用Linq To Entity、自已编写ORM映射、以及使用缓存保存常用数据之间的性能
第1步 建立数据库
首先我们模拟1个需求环境:会员参加活动,生成活动记录,会员有性别、所属区域字段。
第1步,建立Sql Server数据库,Members表保存成员的基本信息,其中SexId、AreaId为外键,分别关联Sex性别表、Areas区域表;Activitys表保存活动的标题;ActivityRecords表保存成员参加活动的记录,其中MemberId、ActivityId为外键,分别关联Members成员表、Activitys活动表。
下面是创建表结构的Sql语句:
Continue reading “比较使用Linq To Entity、自已编写ORM映射、以及使用缓存保存常用数据之间的性能”