不需要將資料查詢回來, 就可以透過 Entry 更新完整或部份資料
[ASP.NET Core] 連接 Sql Server 可用性群組時發生 SqlException
- 623
- 0
- ASP.NET Core
A connection was successfully established with the server, but then an error occurred during the pre-login handshake. (provider: SSL Provider, error: 0 - The wait operation timed out.)
---> System.ComponentModel.Win32Exception (258): The wait operation timed out.
[ASP.NET MVC] JsonResult返回內容太大, 發生 InvalidOperationException
System.InvalidOperationException: Error during serialization or deserialization using the JSON JavaScriptSerializer. The length of the string exceeds the value set on the maxJsonLength property.
[ASP.NET Core] 透過 NLog 將log一併紀錄到 AWS CloudWatch
- 1543
- 0
- ASP.NET Core
- 2021-10-18
簡單設定 NLog.config, 即可將log一併紀錄到CloudWatch
[ASP.NET Core] 在 NLog.Config 中取得 appsettings.json 的設定值
- 1549
- 0
- ASP.NET Core
原本在 Asp.Net Mvc中可以使用 ${appsetting} 取得設定值,但在 Asp.Net Core 中卻無法使用
[ASP.NET Core] 使用 Heroku 的 PostgreSQL
- 801
- 0
- ASP.NET Core
寫 SideProejct 剛好有資料庫的需求,Heroku 有提供免費的 PostgreSQL 方案可以使用.
[ASP.NET MVC] 讓 API 允許/不允許瀏覽器快取
為 api 加上 attribute, 設定快取類型
[EntityFramework] 查詢現有資料庫時,發現嘗試查詢 __MigrationHistory 而Table不存在的錯誤
- 515
- 0
- EntityFramework
透過EF直接查詢現有的資料庫,而非走完整的Code First流程(Add Migration, update database…),故資料庫內不存在Table [__MigrationHistory],但執行查詢時記錄到的Log卻會發現EF會嘗試的查詢它並發生錯誤...
[Redis] 在 Asp.Net 使用 StackExchange.Redis 操作 Redis
簡單筆記在如何使用 StackExchange.Redis 操作Redis
[Redis] 淺談Redis內的幾種資料類型
面試被洗臉,發現對Redis的瞭解不夠深,只好來惡補一下,這篇只會先簡單介紹各個資料類型,command的部分會在之後的文章介紹