Understand Contract Testing and How to implement it in C#In software development, ensuring the reliability and stability of microservices and APIs has become paramount. As applications grow in…Sep 14, 2023Sep 14, 2023
Do you really know? Which of catch, finally and return is executed first?A friend of mine encountered a problem a while ago. The point of the problem is which of the catch and finally code blocks in…Aug 1, 2023Aug 1, 2023
Without Blazor WebAssembly, develop a web site that compiles and runs C# code on browserIn this article, I will share with you on how to “ build a tool to compile and run C# code in the browser”. The core technology is to write…Feb 10, 20231Feb 10, 20231
OMG, A lambda expression like this in C# has such a BugToday, a friend told me that he had encountered a strange bug in a very simple piece of C# code, which was to find a random item from a…Dec 6, 20222Dec 6, 20222
400% faster, Rapid data insertion in Entity Framework Core 7Because in the previous version, Entity Framework Core (EF Core) could not efficiently insert, modify and delete data in batches, so I…Dec 1, 2022Dec 1, 2022
Who says .NET doesn’t have GC tuning, changing one line of code made less memory consumptionNov 29, 2022Nov 29, 2022
Make Strongly-Typed-Id of DDD easier in Entity Framework Core 7In Domain-Driven-Deisgn (DDD), Strongly-typed-id is an important concept. Developers can benefit from using strongly-typed-id for the…Nov 24, 2022Nov 24, 2022
Two steps to builder a .NET Trimmer applicationTen days ago, I published an open-source program for trimming .NET Core applications, which is Zack.DotNetTrimmer. Compared with. NET Core…Mar 21, 20221Mar 21, 20221
Zack.DotNetTrimmer, a .NET Core tailor, has updated the engine and supported recording and playbackLast week, I published an open source program for slimming .NET Core applications, which is Zack.DotNetTrimmer. Compared with. NET Core…Mar 21, 2022Mar 21, 2022
A better .NET Core trimmer, reduce the program size to 30%Why I developed an application trimmer for .NET Core?Mar 8, 2022Mar 8, 2022
How to prevent asp.net core mvc from compile cshtml view when deployingTo avoid the performance problems associated with compiling CSHTML at runtime, CSHTML files in ASP.NET Core MVC project will be compiled…Feb 8, 2022Feb 8, 2022
The best way to analyze .Net assemblies without Assembly.LoadFile(), beyond ReflectionOnlyLoadWhen writing .Net programs, if we need to analyze an assembly file, we can use Assembly.LoadFile() to load the assembly for further…Feb 8, 2022Feb 8, 2022
.Net 6! Zack.EFCore.Batch can update, insert, and delete in batches with Entity Framework Core.As we know, when updating or deleting data in Entity Framework Core, we need to query the data first and then update or delete the data one…Dec 13, 2021Dec 13, 2021
Developing teleprompter application using NET 5,based on embedded Web server and PowerPoint…1. IntroductionMay 13, 2021May 13, 2021
Five secrets of .NET async awaitAsync /await async operations, the amazing syntactic sugar of C#, make asynchronous programming beautiful and easy to implement. Even…Apr 1, 20212Apr 1, 20212
The best way to get value from Json request on ASP.NET Core, like axiosThis article introduces a way to bind JSON request data submitted by Axios or other front-ends in ASP.NET Core to the plain parameters of…Mar 4, 2021Mar 4, 2021
.NET5_.NET Core, Uses database as configuration central serverThis article introduces a way to use the database as the configuration central server on .NET, and describes a customized…Mar 1, 2021Mar 1, 2021
Extract portrait and replace background(image matting) by code, using C# .NET and OpenCVSharpAbstract:This article introduces a method of using OpenCVSharp to “extract the portrait and replace the background” for the green screen…Dec 17, 2020Dec 17, 2020
Method for batch deleting or updating in Entity Framework Core 5This article describes a library that enable Entity Framework Core 5 users to batch update and delete data within a single roundtrip…Nov 27, 2020Nov 27, 2020
Fixed bugs of external login in.net Core website behind the reverse proxyRecently, I was working on the memorization module for youzack and had some problems with the external logins.The website provides QQ…May 7, 2020May 7, 2020