SlideShare una empresa de Scribd logo
1 de 121
Descargar para leer sin conexión
twMVC#15 – 開發的效能與效率
Kevin Tseng
http://mvc.tw
 微軟最有價值專家(MVP)2013,2014
 twMVC 核心成員及講師 (http://mvc.tw)
 SkillTree 專任講師 (http://skilltree.my)
 部落格「mrkt 的程式學習筆記」
http://kevintsengtw.blogspot.tw
 Google+ 專頁
https://plus.google.com/+KevintsengtwBlogspot
簡介
2
3
效能 Performance
http://mvc.tw
 twMVC#8「超。光速 網站最佳化實戰」by demo
http://mvc.tw/Event/2013/3/30
 簡報
http://goo.gl/P7P8h2
今天不講怎麼調校網頁讓執行速度更快
4
http://mvc.tw
 TechEd North America 2014 [DEV-B418]
Performance Optimize Your ASP.NET Web App
Mads Kristensen
http://goo.gl/wFZBCU
今天不講怎麼調校網頁讓執行速度更快
5
Yahoo – Yslow (Why Slow)
6
https://developer.yahoo.com/yslow/
Web Developer Checklist –
ASP.NET Performance
7
http://webdevchecklist.com/asp.net/performance/
Web Developer Checklist
8
http://webdevchecklist.com/
Web Developer Checklist – ASP.NET
9
http://webdevchecklist.com/asp.net/
Web Developer Checklist –
Chrome Extensions
10
http://goo.gl/2DqFl
http://mvc.tw
 不要太早關注效能
 網頁執行慢,常常是開發時忽略了應注意而未注意的項目
 很多時候都是程式寫法而造成
 不當的 LINQ 操作
關於效能……
11
http://mvc.tw
如何觀察 EF 所產生的 SQL Command
12
http://mvc.tw
如何觀察 EF 所產生的 SQL Command
13
http://mvc.tw
如何觀察 EF 所產生的 SQL Command
14
http://mvc.tw
如何觀察 EF 所產生的 SQL Command – EF6
15
http://mvc.tw
如何觀察 EF 所產生的 SQL Command – EF6
16
http://mvc.tw
如何觀察 EF 所產生的 SQL Command – EF6
17
http://mvc.tw
 只有 Ultimate 版本才有此功能
Visual Studio - IntelliTrace
18
http://mvc.tw
Visual Studio - IntelliTrace
19
http://mvc.tw
 Clutch.Diagnostics.EntityFramework
https://github.com/Kukkimonsuta/Clutch
 Nuget
Install-Package Clutch.Diagnostics.EntityFramework
Entity Framework 5
20
P.S. 與 NLog 搭配使用
http://mvc.tw
Clutch.Diagnostics.EntityFramework
21
http://mvc.tw
Clutch.Diagnostics.EntityFramework
22
http://mvc.tw
Clutch.Diagnostics.EntityFramework
23
http://mvc.tw
 Logging and Intercepting Database Operations
http://msdn.microsoft.com/zh-tw/data/dn469464.aspx
 Entity Framework 6 Only
 與 NLog 搭配使用(也可使用 Log4Net …etc)
EF6 – Intercepting, Logging
24
http://mvc.tw
EF6 – Intercepting, Logging
25
http://mvc.tw
EF6 – Intercepting, Logging
26
http://mvc.tw
EF6 – Intercepting, Logging
27
http://mvc.tw
EF6 – Intercepting, Logging
28
29
MiniProfiler
http://mvc.tw
MiniProfiler
30
http://miniprofiler.com/
http://mvc.tw
 可分析系統裡透過 ADO.NET 所執行的 SQL Command
 顯示頁面執行所耗費的時間
 MS SQL Server, Oracle, MySql, Postgres …
 LINQ to SQL, Entity Framework, ADO.NET
 ASP.NET MVC, ASP.NET WebForms
 由 Stack Overflow 團隊所設計開發
 在 Stack Exchange 等系列網站都有使用.
MiniProfiler
31
http://mvc.tw
 透過 NuGet 安裝:
MiniProfiler,MiniProfiler.Mvc4,MiniProfiler.EF6
MiniProfiler
32
http://mvc.tw
 修改 _Layout.cshtml
MiniProfiler
33
http://mvc.tw
 修改 Global.asax
MiniProfiler
34
http://mvc.tw
 修改 Global.asax
MiniProfiler
35
http://mvc.tw
 修改 Web.Config
MiniProfiler
36
<system.webServer>
...
<handlers>
<add name="MiniProfiler" path="mini-profiler-resources/*"
verb="*" type="System.Web.Routing.UrlRoutingModule"
resourceType="Unspecified" preCondition="integratedMode" />
</handlers>
</system.webServer>
http://mvc.tw
MiniProfiler
37
http://mvc.tw
MiniProfiler
38
http://mvc.tw
MiniProfiler
39
http://mvc.tw
 安全性釋疑:預設只有在 Local 端才會顯示,Remote 下
並不會顯示
MiniProfiler
40
http://mvc.tw
 可在 Web.Config 裡加上開關,用來控制是否顯示
MiniProfiler
41
http://mvc.tw
MiniProfiler
42
http://mvc.tw
 改由 enable_profiling 與 Request.IsLocal
MiniProfiler
43
http://mvc.tw
 分層架構、AJAX
 結合權限機制限定角色才會顯示 MiniProfiler 視窗
MiniProfiler – 進階操作
44
45
Glimpse
http://mvc.tw
Glimpse
46
http://getglimpse.com/
http://mvc.tw
Glimpse
47
線上操作就知道有什麼功用
http://play.getglimpse.com/
http://mvc.tw
 視覺化的系統執行追蹤訊息
 顯示系統 Configuration 內容
 Route Debugging
 顯示 View Rander 的細節
 顯示 Http Request 的內容
 多種擴充的 Third Party Extensions
Glimpse
48
http://mvc.tw
 NuGet:
Glimpse Core
Glimpse ASP.NET
Glimpse Mvc5
Glimpse EF6
Glimpse
49
http://mvc.tw
 安裝之後,開啟使用
Glimpse
50
http://localhost/Glimpse.axd
http://mvc.tw
 觀察 EntityFramework 所執行的 SQL Command
Glimpse
51
http://mvc.tw
Glimpse
52
http://mvc.tw
Glimpse Extensions
53
http://getglimpse.com/Extensions/
http://mvc.tw
 分層架構、AJAX
 Glimpse.Performance
Glimpse – 進階操作
54
http://mvc.tw
 Glimpse 有支援 ASP.NET WebForms
Glimpse – ASP.NET WebForms
55
https://www.youtube.com/watch?v=vS6ONq6YwyI
http://mvc.tw
Glimpse – ASP.NET WebForms
56
57
Microsoft Monitoring Agent
http://mvc.tw
 Microsoft Monitoring Agent 會監視電腦基礎結構和應
用程式健全狀況。它會收集診斷資料,例如效能標準、事件
記錄檔和追蹤。Microsoft Monitoring Agent 可以做為
獨立工具使用,或是與 System Center Operations
Manager 搭配使用。
 下載位置
http://www.microsoft.com/zh-TW/download/details.aspx?id=40316
Microsoft Monitoring Agent (MMA)
58
http://mvc.tw
Microsoft Monitoring Agent (MMA)
59
http://mvc.tw
Microsoft Monitoring Agent (MMA)
60
61
Performance and Diagnostics
Hub (效能與分析中樞)
http://mvc.tw
效能與診斷
62
http://mvc.tw
效能與診斷
63
http://mvc.tw
效能與診斷
64
http://mvc.tw
效能與診斷
65
http://mvc.tw
效能與診斷
66
67
ANTS Performance/ANTS Memory
Profiler
http://mvc.tw
ANTS Performance Profiler
68
http://www.red-gate.com/products/dotnet-development/ants-performance-profiler/
http://mvc.tw
ANTS Memory Profiler
69
http://www.red-gate.com/products/dotnet-development/ants-memory-profiler/
http://mvc.tw
ANTS Performance/Memory Profiler
70
71
Telerik JustTrace
Performance/Memory Profiler
http://mvc.tw
Telerik JustTrace
72
http://www.telerik.com/products/memory-performance-profiler.aspx
http://mvc.tw
Telerik JustTrace Key Features
73
http://mvc.tw
Telerik JustTrace Profoiler
74
75
開發的效率
http://mvc.tw
 多螢幕,效率高!
開發的效率
76
http://mvc.tw
 換 SSD ,效率高!
開發的效率
77
http://mvc.tw
 善用你手邊的開發工具
 Visual Studio 號稱地表上最強的工具,要懂得如何使用
 熟悉 Visual Studio 快捷鍵
 安裝好用的 Visual Studio Extensions
開發的效率
78
http://mvc.tw
熟悉 Visua Studio 快捷鍵
79
http://visualstudioshortcuts.com/2013/
http://mvc.tw
Products and Extensions for Visual Studio
80
http://visualstudiogallery.msdn.microsoft.com/
推薦好套件 by demo
81
http://vs.demo.tc/
http://mvc.tw
Productivity Power Tools
http://visualstudiogallery.msdn.microsoft.com/d0d33361-18e2-
46c0-8ff2-4adea1e34fef/
VSCommands
http://vscommands.squaredinfinity.com/features
Web Essentials
http://vswebessentials.com/
這些套件你裝了沒?
82
http://mvc.tw
 ReAttach
 Indent Guides
 Javascript Parser
 Advanced Javascript outlining
 Jscript vsdoc Stub Generator 2012
 CodeMaid
 BuildVision
我還有哪些必裝的套件
83
http://mvc.tw
 Highlight all occurrences of selected words
 Image Optimizer
 jQuery Code Snippets
 GhostDoc
 Cobisi Routing Assistant
我還有哪些必裝的套件
84
http://mvc.tw
 ReSharper
http://www.jetbrains.com/resharper/
 OzCode
http://www.oz-code.com/
 .NET Reflector Visual Studio Extension
http://www.red-gate.com/products/dotnet-
development/reflector/
我還有哪些必裝的套件
85
http://mvc.tw
Bing Code Search for C#
86
http://goo.gl/OoXzsf
http://mvc.tw
 Alt + A
Bing Code Search for C#
87
http://mvc.tw
Web Search
88
http://goo.gl/199ByB
http://mvc.tw
Web Search
89
http://mvc.tw
Web Search
90
91
ReShaper
http://mvc.tw
JetBrain - ReSharper
92
http://www.jetbrains.com/resharper/
http://mvc.tw
JetBrain - ReSharper
93
94
行動網站-用來偵錯的瀏覽器
http://mvc.tw
 Ctrl + Shift + M
Firefox
95
http://mvc.tw
Chrome
96
http://mvc.tw
Mobilizer
97
http://mvc.tw
Electric Mobile Studio
98
http://www.electricplum.com/
http://mvc.tw
Electric Mobile Studio
99
http://mvc.tw
BrowserStack
100
http://www.browserstack.com
http://mvc.tw
BrowserStack
101
http://mvc.tw
BrowserStack
102
http://mvc.tw
BrowserStack - Chrome Extensions
103
104
Windows Phone Emulator
http://mvc.tw
Windows Phone 開發人員中心
105
https://dev.windowsphone.com/zh-tw
http://mvc.tw
Windos Phone 8.1 模擬器
106
https://dev.windowsphone.com/zh-tw/downloadsdk
http://mvc.tw
Windows Phone Emulator
107
http://mvc.tw
Windows Phone Emulator
108
http://mvc.tw
使用 Windows Phone Emulator 偵錯
109
110
modern.IE
http://mvc.tw
modern.IE
111
http://loc.modern.ie/zh-tw
http://mvc.tw
下載虛擬機器,測試各版本 IE 瀏覽器
112
http://mvc.tw
下載虛擬機器,測試各版本 IE 瀏覽器
113
http://mvc.tw
Modern.IE …… BrowserStack
114
115
http://mvc.tw
 Introducing Microsoft Monitoring Agent
 Performance Details in IntelliTrace
 IntelliTrace MVC Navigation
 UI Enhancements for IntelliTrace with Visual Studio
2013 Update 2
 使用 Microsoft Monitoring Agent 監視部署中的應用程式
 使用 Visual Studio 和 Microsoft Monitoring Agent 診斷
部署中的問題
Microsoft Monitoring Agent 相關連結
116
http://mvc.tw
 Performance and Diagnostics Hub in Visual
Studio 2013
 New CPU Usage tool in the Performance and
Diagnostics hub in Visual Studio 2013
 MSDN 使用程式碼剖析工具分析應用程式效能
 Visual Studio 2013的進階偵錯與效能分析技巧
Performance and Diagnostics Hub
117
http://mvc.tw
好活動需要支持
感謝 KKTIX 贊助 twMVC 活動報名平台
118
http://mvc.tw
好課程需要支持
119
http://skilltree.my
http://mvc.tw
好課程別放過 – ASP.NET MVC 5 實戰訓練營
120
http://skilltree.kktix.cc/events/skilltree2
謝謝各位
• 本投影片所包含的商標與文字皆屬原著作者所有。
• 本投影片使用的圖片皆從網路搜尋。
• 本著作係採用姓名標示-非商業性-相同方式分享 3.0 台灣授權。閱讀本授權條款,請到
http://creativecommons.org/licenses/by-nc-sa/3.0/tw/,或寫信至Creative Commons, 444 Castro
Street, Suite 900, Mountain View, California, 94041, USA.
h t t p : / / m v c . t w

Más contenido relacionado

La actualidad más candente

La actualidad más candente (19)

twMVC#28 | visual studio 2017 新功能介紹
twMVC#28 | visual studio 2017 新功能介紹twMVC#28 | visual studio 2017 新功能介紹
twMVC#28 | visual studio 2017 新功能介紹
 
twMVC#19 | 微信公眾平台申請與wechat api 開發血淚史
twMVC#19 | 微信公眾平台申請與wechat api 開發血淚史twMVC#19 | 微信公眾平台申請與wechat api 開發血淚史
twMVC#19 | 微信公眾平台申請與wechat api 開發血淚史
 
twMVC#23 | 一個Mobile App開發、維護與改版的愛恨之路
twMVC#23 | 一個Mobile App開發、維護與改版的愛恨之路twMVC#23 | 一個Mobile App開發、維護與改版的愛恨之路
twMVC#23 | 一個Mobile App開發、維護與改版的愛恨之路
 
twMVC#29 -Learning Machine Learning with Movie Recommendation
twMVC#29 -Learning Machine Learning with Movie RecommendationtwMVC#29 -Learning Machine Learning with Movie Recommendation
twMVC#29 -Learning Machine Learning with Movie Recommendation
 
架構設計入門 twMVC#11
架構設計入門 twMVC#11架構設計入門 twMVC#11
架構設計入門 twMVC#11
 
Vs2013新功能介紹 twMVC#11
Vs2013新功能介紹 twMVC#11Vs2013新功能介紹 twMVC#11
Vs2013新功能介紹 twMVC#11
 
動手打造 application framework-twMVC#15
動手打造 application framework-twMVC#15動手打造 application framework-twMVC#15
動手打造 application framework-twMVC#15
 
MVC實戰分享 分頁與排序相關技巧-tw mvc#13
MVC實戰分享 分頁與排序相關技巧-tw mvc#13MVC實戰分享 分頁與排序相關技巧-tw mvc#13
MVC實戰分享 分頁與排序相關技巧-tw mvc#13
 
ASP.NET MVC 善用網路資源快速完打造網站
ASP.NET MVC 善用網路資源快速完打造網站ASP.NET MVC 善用網路資源快速完打造網站
ASP.NET MVC 善用網路資源快速完打造網站
 
Asp.net mvc 從無到有 -twMVC#2
Asp.net mvc 從無到有 -twMVC#2Asp.net mvc 從無到有 -twMVC#2
Asp.net mvc 從無到有 -twMVC#2
 
專案分層架構 twMVC#18
專案分層架構 twMVC#18專案分層架構 twMVC#18
專案分層架構 twMVC#18
 
twMVC#29 | 當.Net Core 遇到AWS Lambda
twMVC#29 | 當.Net Core 遇到AWS LambdatwMVC#29 | 當.Net Core 遇到AWS Lambda
twMVC#29 | 當.Net Core 遇到AWS Lambda
 
twMVC#23 | 快速上手 Azure Functions
twMVC#23 | 快速上手 Azure FunctionstwMVC#23 | 快速上手 Azure Functions
twMVC#23 | 快速上手 Azure Functions
 
如何在實務上使用TDD來開發 twmvc#12
如何在實務上使用TDD來開發 twmvc#12如何在實務上使用TDD來開發 twmvc#12
如何在實務上使用TDD來開發 twmvc#12
 
ASP.NET MVC Model 的設計與使用 twMVC#10
ASP.NET MVC Model 的設計與使用 twMVC#10ASP.NET MVC Model 的設計與使用 twMVC#10
ASP.NET MVC Model 的設計與使用 twMVC#10
 
一小時可以打造什麼服務Plus twMVC#18
一小時可以打造什麼服務Plus twMVC#18一小時可以打造什麼服務Plus twMVC#18
一小時可以打造什麼服務Plus twMVC#18
 
輕鬆上手ASP.NET Web API 2.1.2
輕鬆上手ASP.NET Web API 2.1.2輕鬆上手ASP.NET Web API 2.1.2
輕鬆上手ASP.NET Web API 2.1.2
 
twMVC#21 | 以實例說明ASP.NET Web API 服務的開發與測試過程
twMVC#21 | 以實例說明ASP.NET Web API 服務的開發與測試過程twMVC#21 | 以實例說明ASP.NET Web API 服務的開發與測試過程
twMVC#21 | 以實例說明ASP.NET Web API 服務的開發與測試過程
 
ASP.NET MVC Code Templates實戰開發 -twMVC#4
 ASP.NET MVC Code Templates實戰開發 -twMVC#4 ASP.NET MVC Code Templates實戰開發 -twMVC#4
ASP.NET MVC Code Templates實戰開發 -twMVC#4
 

Similar a twMVC#15 | 開發的效能與效率

版本控制系统进阶
版本控制系统进阶版本控制系统进阶
版本控制系统进阶
killmyday
 
Google雲端 第一章準備篇
Google雲端 第一章準備篇Google雲端 第一章準備篇
Google雲端 第一章準備篇
gracebrainyu
 
zhuwenlongChinese
zhuwenlongChinesezhuwenlongChinese
zhuwenlongChinese
Wenlong Zhu
 
Tech Net Taiwan Resources Intro
Tech Net Taiwan Resources IntroTech Net Taiwan Resources Intro
Tech Net Taiwan Resources Intro
Timothy Chen
 

Similar a twMVC#15 | 開發的效能與效率 (20)

twMVC#14 | 輕鬆上手ASP.NET Web API 2
twMVC#14 | 輕鬆上手ASP.NET Web API 2twMVC#14 | 輕鬆上手ASP.NET Web API 2
twMVC#14 | 輕鬆上手ASP.NET Web API 2
 
一個微信專案從0到000的效能調教
一個微信專案從0到000的效能調教一個微信專案從0到000的效能調教
一個微信專案從0到000的效能調教
 
twMVC#33玩轉 Azure 彈性部署
twMVC#33玩轉 Azure 彈性部署twMVC#33玩轉 Azure 彈性部署
twMVC#33玩轉 Azure 彈性部署
 
twMVC#11 | 架構設計入門
twMVC#11 | 架構設計入門twMVC#11 | 架構設計入門
twMVC#11 | 架構設計入門
 
Bruce-輕鬆上手Asp.net web api 2.1.2
Bruce-輕鬆上手Asp.net web api 2.1.2Bruce-輕鬆上手Asp.net web api 2.1.2
Bruce-輕鬆上手Asp.net web api 2.1.2
 
twMVC#31網站上線了然後呢
twMVC#31網站上線了然後呢twMVC#31網站上線了然後呢
twMVC#31網站上線了然後呢
 
版本控制系统进阶
版本控制系统进阶版本控制系统进阶
版本控制系统进阶
 
Google雲端 第一章準備篇
Google雲端 第一章準備篇Google雲端 第一章準備篇
Google雲端 第一章準備篇
 
大規模微服務導入 - #2 從零開始的微服務 .NET Core 框架設計
大規模微服務導入 - #2 從零開始的微服務 .NET Core 框架設計大規模微服務導入 - #2 從零開始的微服務 .NET Core 框架設計
大規模微服務導入 - #2 從零開始的微服務 .NET Core 框架設計
 
极速 Angular 开发:效能调校技巧 (ngChina 2019)
极速 Angular 开发:效能调校技巧 (ngChina 2019)极速 Angular 开发:效能调校技巧 (ngChina 2019)
极速 Angular 开发:效能调校技巧 (ngChina 2019)
 
與 Asp.net mvc 的第一次親密接觸 - twMVC#1
與 Asp.net mvc 的第一次親密接觸 - twMVC#1與 Asp.net mvc 的第一次親密接觸 - twMVC#1
與 Asp.net mvc 的第一次親密接觸 - twMVC#1
 
zhuwenlongChinese
zhuwenlongChinesezhuwenlongChinese
zhuwenlongChinese
 
twMVC#42 讓我們用一種方式來開發吧
twMVC#42 讓我們用一種方式來開發吧twMVC#42 讓我們用一種方式來開發吧
twMVC#42 讓我們用一種方式來開發吧
 
Asp.Net Mvc 1.0
Asp.Net Mvc 1.0Asp.Net Mvc 1.0
Asp.Net Mvc 1.0
 
面對移動化App挑戰的架構設計
面對移動化App挑戰的架構設計面對移動化App挑戰的架構設計
面對移動化App挑戰的架構設計
 
Tech Net Taiwan Resources Intro
Tech Net Taiwan Resources IntroTech Net Taiwan Resources Intro
Tech Net Taiwan Resources Intro
 
twMVC#01 | ASP.NET MVC 的第一次親密接觸
twMVC#01 | ASP.NET MVC 的第一次親密接觸twMVC#01 | ASP.NET MVC 的第一次親密接觸
twMVC#01 | ASP.NET MVC 的第一次親密接觸
 
2015 年逢甲大學資訊系:ASP.NET MVC 4 教育訓練3
2015 年逢甲大學資訊系:ASP.NET MVC 4 教育訓練32015 年逢甲大學資訊系:ASP.NET MVC 4 教育訓練3
2015 年逢甲大學資訊系:ASP.NET MVC 4 教育訓練3
 
Data Pipeline Matters
Data Pipeline MattersData Pipeline Matters
Data Pipeline Matters
 
twMVC#33聊聊如何自建 Facebook {廣告} 服務 with API
twMVC#33聊聊如何自建 Facebook {廣告} 服務 with API twMVC#33聊聊如何自建 Facebook {廣告} 服務 with API
twMVC#33聊聊如何自建 Facebook {廣告} 服務 with API
 

Más de twMVC

Más de twMVC (20)

twMVC 47_Elastic APM 的兩三事
twMVC 47_Elastic APM 的兩三事twMVC 47_Elastic APM 的兩三事
twMVC 47_Elastic APM 的兩三事
 
twMVC#46_SQL Server 資料分析大躍進 Machine Learning Services
twMVC#46_SQL Server 資料分析大躍進 Machine Learning ServicestwMVC#46_SQL Server 資料分析大躍進 Machine Learning Services
twMVC#46_SQL Server 資料分析大躍進 Machine Learning Services
 
.NET 7 家族新成員: Microsoft Orleans v7
.NET 7 家族新成員:Microsoft Orleans v7.NET 7 家族新成員:Microsoft Orleans v7
.NET 7 家族新成員: Microsoft Orleans v7
 
twMVC#46 一探 C# 11 與 .NET 7 的神奇
twMVC#46 一探 C# 11 與 .NET 7 的神奇twMVC#46 一探 C# 11 與 .NET 7 的神奇
twMVC#46 一探 C# 11 與 .NET 7 的神奇
 
twMVC#44 如何測試與保護你的 web application with playwright
twMVC#44 如何測試與保護你的 web application with playwrighttwMVC#44 如何測試與保護你的 web application with playwright
twMVC#44 如何測試與保護你的 web application with playwright
 
twMVC#44 讓我們用 k6 來進行壓測吧
twMVC#44 讓我們用 k6 來進行壓測吧twMVC#44 讓我們用 k6 來進行壓測吧
twMVC#44 讓我們用 k6 來進行壓測吧
 
twMVC#43 Visual Studio 2022 新功能拆解
twMVC#43 Visual Studio 2022 新功能拆解twMVC#43 Visual Studio 2022 新功能拆解
twMVC#43 Visual Studio 2022 新功能拆解
 
twMVC#43 YARP
twMVC#43 YARPtwMVC#43 YARP
twMVC#43 YARP
 
twMVC#43 C#10 新功能介紹
twMVC#43 C#10 新功能介紹twMVC#43 C#10 新功能介紹
twMVC#43 C#10 新功能介紹
 
twMVC#42 Azure DevOps Service Pipeline設計與非正常應用
twMVC#42 Azure DevOps Service Pipeline設計與非正常應用twMVC#42 Azure DevOps Service Pipeline設計與非正常應用
twMVC#42 Azure DevOps Service Pipeline設計與非正常應用
 
twMVC#42 Azure IoT Hub for Smart Factory
twMVC#42 Azure IoT Hub for Smart FactorytwMVC#42 Azure IoT Hub for Smart Factory
twMVC#42 Azure IoT Hub for Smart Factory
 
twMVC#42 Windows容器導入由0到1
twMVC#42 Windows容器導入由0到1twMVC#42 Windows容器導入由0到1
twMVC#42 Windows容器導入由0到1
 
twMVC#41 hololens2 MR
twMVC#41 hololens2 MRtwMVC#41 hololens2 MR
twMVC#41 hololens2 MR
 
twMVC#41 The journey of source generator
twMVC#41 The journey of source generatortwMVC#41 The journey of source generator
twMVC#41 The journey of source generator
 
twMVC#38 How we migrate tfs to git(using azure dev ops)
twMVC#38 How we migrate tfs to git(using azure dev ops) twMVC#38 How we migrate tfs to git(using azure dev ops)
twMVC#38 How we migrate tfs to git(using azure dev ops)
 
twMVC#36C#的美麗與哀愁
twMVC#36C#的美麗與哀愁twMVC#36C#的美麗與哀愁
twMVC#36C#的美麗與哀愁
 
twMVC#36.NetCore 3快速看一波
twMVC#36.NetCore 3快速看一波twMVC#36.NetCore 3快速看一波
twMVC#36.NetCore 3快速看一波
 
twMVC#36讓 Exceptionless 存管你的 Log
twMVC#36讓 Exceptionless 存管你的 LogtwMVC#36讓 Exceptionless 存管你的 Log
twMVC#36讓 Exceptionless 存管你的 Log
 
twMVC#32應用 ASP.NET WebAPI2 Odata 建置高互動性 APIS
twMVC#32應用 ASP.NET WebAPI2 Odata 建置高互動性 APIStwMVC#32應用 ASP.NET WebAPI2 Odata 建置高互動性 APIS
twMVC#32應用 ASP.NET WebAPI2 Odata 建置高互動性 APIS
 
twMVC#31沒有 hdd 的網站重構 webform to mvc
twMVC#31沒有 hdd 的網站重構 webform to mvctwMVC#31沒有 hdd 的網站重構 webform to mvc
twMVC#31沒有 hdd 的網站重構 webform to mvc
 

twMVC#15 | 開發的效能與效率