2017年4月25日 星期二

=> Lambda運算子

https://msdn.microsoft.com/zh-tw/library/bb311046.aspx

它會在以方法語法所表示的 LINQ 查詢中大量使用
讀音:goes to
可以把它理解為一個匿名方法,Lambda表達式也是由匿名方法演變而來
C# 2.0的匿名方法用起來太麻煩
C# 3.0推出來Lambda表達式(Visual Studio 2008、.NET Framework 3.5)

C#
https://zh.wikipedia.org/wiki/C%E2%99%AF

Can I use Entity Framework 6 with Visual Studio 2010?

http://stackoverflow.com/questions/20993794/can-i-use-entity-framework-6-with-visual-studio-2010

EF6 tooling does not support VS2010. EF tooling was updated to work with EF6 for VS2012 and VS2013. In other words on VS2010 and EF6 you can do CodeFirst but not ModelFirst/DatabaseFirst.

2017年4月24日 星期一

輸出 Output

Ctrl+Alt+O

錯誤清單 Error List

Ctrl+\之後再按E

F4

屬性
Properties

Ctrl + Alt + S

伺服器總管
Server Explorer

Global.asax和App_Start

ASP.NET MVC 3將程式設定組態檔放在Global.asax(比如路由設定、過濾器)
ASP.NET MVC 4將其獨立出來到App_Start資料夾

2017年4月20日 星期四

查看Windows10安裝檔的版本資訊

需要系統管理權限
dism /Get-WimInfo /WimFile:H:\sources\install.esd /index:1

How to see which build and edition of Windows 10 the iso file contains



2017年4月18日 星期二

Windows Server關閉RC4和3DES加密演算法

RC 4
   
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC4 40/128]
        "Enabled"=dword:00000000
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC4 56/128]
        "Enabled"=dword:00000000

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC4 128/128]
        "Enabled"=dword:00000000

3DES
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\Triple DES 168]
        "Enabled"=dword:00000000


Windows Server 2003、XP、Vista[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\Triple DES 168/168]
        "Enabled"=dword:00000000

2017年4月16日 星期日

Visual Studio編譯SCSS/LESS

Web Compiler
https://marketplace.visualstudio.com/items?itemName=MadsKristensen.WebCompiler

Web Essentials 2015不再支援SCSS/LESS自動編譯
http://blog.darkthread.net/post-2015-07-21-web-compiler-for-vs2015.aspx

也可以另外安裝Prepros之類的獨立編譯工具