.NET Programming
Articles
Migrate from AutoMapper to Mapster using GenAI Coding Tool
2025-09-02
Resolve JWT Validation Error - IDX10511: Signature validation failed in .NET
2025-07-02
Error: database static dir ... does not match our static dir ... database configuration mismatch
2025-01-09
Semantic Kernel with Local LLMs in C#/.NET
2024-05-21
Resolve error MSB4126: The specified solution configuration "Debug|x64" is invalid
2024-05-19
Install .NET 8 and 9 SDKs on a Non-System Drive
2024-04-28
Danger: Bypass SSL Interception Proxy Server Certificate Validation in .NET or Python HTTP Requests
2024-01-05
InvalidOperationException: A second operation was started on this context instance before a previous operation completed
2023-09-05
Load Fonts as Glyph in .NET
2022-03-26
Cross-Platform .NET 6 Image Processing Libraries
2022-01-15
Query JSON via JMESPath in .NET
2021-12-21
About --idempotent Flag in dotnet ef migrations script
2021-09-18
.NET - Transform XML Data with XSLT
2021-09-11
Fix Error CryptographicException: The payload was invalid.
2021-08-24
Read Embedded Assembly Resource Files in .NET
2021-08-13
EntityFramework Core: Generate Migration Scripts in a Separate Project
2021-05-15
The Entity Framework tools version '3.1.7' is older than that of the runtime '5.0.3'.
2021-03-08
EntityFramework Core - Update Only One Field
2021-02-14
EntityFramework Core - Connect to MySQL
2021-01-23
.NET Standard for C# 9.0
2020-09-28
LINQ to SQL - Select N Random Records
2020-09-22
Set AttachDbFilename as Relative Path in .NET Core
2018-07-08
SQLite in .NET Core with Entity Framework Core
2018-06-29
Logging configuration in .NET core
.NET core introduces a logging API that works with a number of logging frameworks. The built-in providers are configurable and extensible to support different level loggings.
2017-10-15
Sending Emails in .NET Core Applications
Sending emails are common in applications. For example, when user registers, we need to send account activation emails. This post summarize the approaches we can use to send emails in .NET Core 1.x and 2.x.
2017-10-15
Resolve the Issues in Upgrading Entity Framework to Version 6.1
2015-01-13
[ASP.NET]在虚拟目录中禁止web.config继承IIS根目录的web.config的配置
在我们的ASPNET虚拟目录应用中,有时会出现一些异常,比如在根目录的web.config中添加了HttpHandler以及HttpModule(如一些UrlRewiter重写组件、自己的全局HttpModule等)在虚拟目录运行时就会提示找不到找不到指定的文件的异常。解决方法是在根目录的web.config中针对根路径通过location配置这些module和handler等, 并且在location设置允许子目录重写,以及是否被子集应用程序继承设置为false,如下把<system.web> </system.web>包含在<location></location>结点内部:
2010-10-18
浅谈正则表达式匹配嵌套HTML标签
2010-06-09
Socket通信中文字符乱码问题解决方法
2009-05-13