How To

How to disable ModelStateInvalidFilter in ASP.NET Core
By Tan Lee Published on Feb 04, 2025 310

In ASP.NET Core, ModelStateInvalidFilter is a built-in filter that automatically returns a 400 Bad Request response when the ModelState is invalid.

Mastering Performance Tuning and Best Practices in Entity Framework Core 9
By Tan Lee Published on Mar 05, 2025 63

Entity Framework (EF) is the most widely used object-relational mapper (ORM) for .NET developers, providing an abstraction layer over database interactions that enhances developer productivity.

How to upload file using AngularJS
By Tan Lee Published on Feb 16, 2024 374

To upload a file in AngularJS with an ASP.NET Web API, you need to set up both the AngularJS frontend and the ASP.NET Web API backend to handle file uploads.

How to fix 'NonComVisibleBaseClass was detected'
By Tan Lee Published on Feb 15, 2024 635

The error "NonComVisibleBaseClass was detected" in Visual Studio typically occurs when you are working with COM interop in .NET, and your class inherits from a base class that isn't COM-visible.

How to create a simple progress bars in Python
By Tan Lee Published on Feb 12, 2024 379

To create a simple progress bar in Python using the tqdm library, you can follow these steps:

How to implement simple Memory Cache for Web API
By Tan Lee Published on May 31, 2024 491

Caching helps reduce access to frequently accessed data and less changes in the database, so the application will run faster. Remember that you must ensure that two criteria are regular access level and little change in data.

How to fix LoginPath not working in ASP.NET Core
By Tan Lee Published on Jun 10, 2024 1.48K

If you’re facing issues with LoginPath in ASP.NET Core, it’s usually related to the configuration of the authentication middleware, typically within the Startup.cs or Program.cs file.

How to disable sorting with jquery datatable
By Tan Lee Published on Feb 16, 2024 943

To disable sorting in a jQuery DataTable, you can use the ordering option in the DataTable initialization.

How to fix ckeditor4-secure-version/versions.json?v=4.22.1
By Tan Lee Published on Feb 05, 2024 425

To fix issues related to ckeditor4-secure-version/versions.json?v=4.22.1, you can follow these steps.

How to encode and decode a base64 string in C#
By Tan Lee Published on Jan 31, 2024 528

In C#, you can encode and decode Base64 strings using the Convert class, which provides methods for encoding and decoding.

How to use named tuples in C#
By Tan Lee Published on Mar 05, 2025 115

Tuples allow you to store multiple values together, which can be useful for passing around related data.

How to deconstruct tuples in C#
By Tan Lee Published on Mar 05, 2025 101

Deconstructing a tuple allows you to assign its values to multiple variables simultaneously using the deconstruction assignment syntax.