Advanced Logging Techniques in ASP.NET Core 8 with Serilog and AppInsight
Post Views: 55 Introduction Logs are an important aspect of application development, allowing you to monitor and troubleshoot problems and bugs in your application. Serilog is popular with developers because…
Reusable Dynamic Pagination Component in Blazor
In web applications that deal with large amounts of data, pagination is a common feature. This enables you to split your data into pages, so that users can browse more…
Exciting News: Speaking at C# Corner’s Software Architecture Conference
Post Views: 21 We are thrilled to announce that rijwan and I a seasoned expert in software development, architecture, has been invited to speak at C# Corner’s upcoming event focused…
Resolved: Fluent Validation Warning in .NET 8
Post Views: 37 I was implementing fluent validation in .NET 8 application and got warning that AddFluentValidation is obsolete. Solution to overcome this instead of below We have to use…
Asp.NET Core Web Application Logging with Serilog
Post Views: 55 Introduction Logging application is very crucial part in application development to monitor and investigate any issue or error of the application. Serilog is popular and mostly useful…
How to Investigate Open API Swagger Error- Failed to load API definition
Post Views: 41 Introduction Swagger is a powerful and widely used API development toolset. It provides a framework for designing, building, documenting and consuming RESTful web services. Here are some…
Code Quality Conference- Improve Your Code Quality and Performance using AI and GitHub Copilot
Post Views: 45 We are going to speak at the code quality conference on 27th June 2024. If you are looking for how to improve your code quality, sustainability, scalability,…
Converting Code From Older C# Versions to C# 12: A Quick Guide With Examples
Post Views: 54 As C# continues to evolve, each new version introduces powerful new features that increase the power and readability of the language. You can achieve more efficient, maintainable,…
Fixing:ApplicationInsightsExtensions.AddApplicationInsightsTelemetry(IServiceColletcion, string) is obsolete
Post Views: 49 I was working on ASP.NET Core 8 web API project to logging application in Azure Application insight and got the below warning: “ApplicationInsightsExtensions.AddApplicationInsightsTelemetry(IServiceColletcion, string) is obsolete“ After…
How to implement Fluent Validation in.NET 8
Post Views: 35 Introduction FluentValidation is a popular .NET library used for building strongly-typed validation rules for your objects. It allows you to define validation logic for your model classes…