TECHNOLOGIES
NEWS
VIDEOS
FORUMS
JOBS
BOOKS
EVENTS
MORE
INTERVIEWS
Live
LEARN
Training
CAREER
MEMBERS
BLOGS
CHALLENGES
CERTIFICATION
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
CSharp.com
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Content
People
Search
Any Word
Exact Word
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Emanuel Martins(7)
Sangeetha S(7)
Rijwan Ansari(5)
Shafaet Hossain(5)
Jaimin Shethiya(5)
Ziggy Rafiq(5)
Dashrath Hapani(4)
Subarta Ray(4)
Ramchand Repalle(4)
Jignesh Kumar(4)
Ganesan C(4)
Kirtesh Shah(3)
Manoj Kalla(3)
Vijay Pratap Singh(2)
Gowtham K(2)
Jayraj Chhaya(2)
Ayush Gupta(2)
Varun Setia(2)
Rama Dabburi(2)
Manikandan Murugesan(2)
Anup Hosur(1)
Ajay Kumar(1)
Mohammad Hasan Hosseini(1)
Satya Karki(1)
Cristopher Coronado(1)
Himanshu Patel(1)
Sundaram Subramanian(1)
Pradeep Sahoo(1)
Ricardo Pena(1)
Yogeshkumar Hadiya(1)
Shenbagapandiyan P(1)
Rikam Palkar(1)
George (1)
Tuhin Paul(1)
Mark Pelf(1)
Amit Mohanty(1)
Muhammad Imran Ansari(1)
Champike Karunatilake(1)
Jaydeep Patil(1)
Jay Krishna Reddy (1)
Jefferson S. Motta(1)
Ng Cheehou(1)
Praveen Raveendran Pillai(1)
Devesh Omar(1)
Ck Nitin(1)
Mushtaq M A(1)
Latest First
Oldest First
Most Viewed
Sort By
Search Results
No search result found
Using Icon Fonts in MAUI .NET 9 [GamesCatalog] - Part 7
Mar 18, 2025.
Learn how to integrate FontAwesome icons and manage game status selection in a MAUI MVVM .NET 9 application. This guide covers adding custom fonts, binding commands, and styling buttons dynamically to reflect game progress.
Dynamic Database Web API in .NET 9: Clean Architecture & MediatR for Flexibility
Mar 17, 2025.
A Web API should support multiple database options such as SQL Server, PostgreSQL, MySQL, and SQLite without major code changes. In this article, we will build a .NET 9 Web API using Clean Architecture, Domain-Driven Design (DDD), and MediatR, while implementing dynamic database selection using Entity Framework Core (EF Core).
Integrating .NET Aspire with Dapr for Cloud-Native Apps
Mar 17, 2025.
Integrating .NET Aspire with Dapr for Cloud-Native Apps
WebMethod and ScriptMethod Attributes in .NET Webfroms
Mar 15, 2025.
?In ASP.NET Web Forms, client-side scripts like JavaScript and jQuery can call server-side methods using the [WebMethod] and [ScriptMethod] attributes. These methods must be declared as static (C#) or Shared (VB.NET). This approach enables AJAX functionality, allowing asynchronous data exchange without full page reloads.
A Comprehensive Guide to Azure Storage for .NET Developers
Mar 13, 2025.
Azure Storage is a secure, scalable cloud storage solution for .NET developers. It includes Blob, Table, Queue, File, and Disk Storage for various data needs.
Passing an Object from a List to Another Page in MAUI MVVM .NET 9 [GamesCatalog] - Part 6
Mar 10, 2025.
This article covers object passing techniques using navigation, data binding, and command binding in the GamesCatalog app. Enhance your cross-platform development skills with structured MVVM patterns for seamless data transfer.
Predicting User Behavior in .NET 9 with ML.NET and SDCA Logistic Regression
Mar 07, 2025.
This article covers data preparation, model training, and evaluation to help you build predictive analytics solutions. Enhance decision-making with AI-powered insights and integrate machine learning into your .NET applications.
Infinite Scroll and Loading Indicator in ListView in MAUI MVVM .NET 9 [GamesCatalog] - Part 5
Mar 06, 2025.
This article covers lazy loading, async data fetching, and UI optimization for a seamless user experience in GamesCatalog. Enhance performance with smooth scrolling and dynamic data updates.
API Documentation with Scalar in ASP .NET Core
Mar 03, 2025.
This article covers setting up Scalar, integrating it with your .NET 9 project, and generating interactive API documentation. Improve API usability with clear schemas, request/response details, and testing tools, making development more efficient.
Consuming an API and Populating a List with the Results in MAUI MVVM .NET 9 [GamesCatalog] - Part 4
Mar 03, 2025.
Learn how to consume an API and populate a list with the results in a .NET 9 MAUI MVVM app. In this part of the GamesCatalog series, you'll fetch data from an API, bind it to a list, and implement best practices for handling API responses efficiently.
Chain of Responsibility Using Delegate Chaining in .NET
Mar 02, 2025.
The Chain of Responsibility (CoR) pattern enables flexible processing pipelines, used in ASP.NET Core middleware, HttpClient handlers, and validation pipelines like FluentValidation. It supports dynamic rules, async execution, and extensibility.
Harnessing ML.NET for Sentiment Analysis in .NET 9 Applications
Mar 01, 2025.
Learn how to build a Sentiment Analysis API using ML.NET and .NET 9. This guide covers setting up an ASP.NET Core Web API, training a model, and integrating machine learning for text sentiment prediction.
Real-Time Anomaly Detection in Server Logs with .NET 9 and ML.NET
Feb 28, 2025.
This article explores machine learning techniques to identify unusual patterns, detect errors, and enhance system monitoring. Improve server performance and security with AI-driven log analysis in .NET applications.
AI And .NET: Building Intelligent Apps with .NET 9
Feb 26, 2025.
Discover how .NET 9 empowers developers to build AI-driven applications with ease. Explore ML.NET, Azure AI, and deep learning integrations to create intelligent web and desktop apps.
Server-to-Server Authentication in Zoom Using .NET Core
Feb 25, 2025.
Zoom provides a Server-to-Server OAuth (S2S OAuth) authentication method for secure API interactions between your application and Zoom services. This authentication method is recommended for server-based applications that do not require user authorization.
Document Translation Solution Using Azure AI .NET and React
Feb 24, 2025.
This guide covers integrating Azure Cognitive Services for seamless language translation, enabling real-time multilingual support. Discover how to use AI-powered translation for efficient and scalable applications.
Reusable Components and Styles in MAUI MVVM .NET 9 [GamesCatalog] - Part 3
Feb 24, 2025.
In this third part of the GamesCatalog series, we explore how to create reusable components and styles in MAUI MVVM using .NET 9.
AJAX Calls in Web forms ASPX VB .NET Code
Feb 21, 2025.
Learn how to call an AJAX function in ASP.NET Web Forms using WebMethod. This article covers client-side AJAX requests and server-side processing to enable seamless communication in a .NET Framework 4.7.2 application.
Integrating Microsoft Entra ID SSO with a .NET Application Using OWIN
Feb 20, 2025.
This article covers OAuth 2.0, OpenID Connect, and step-by-step implementation to enable seamless Single Sign-On (SSO), enhancing security and user experience.
Implementation of xUnit in .NET Core
Feb 17, 2025.
This article explores the xUnit package in .NET Core, demonstrating setup, implementation, and execution of unit tests with sample code and output to ensure the reliability of your code.
Authenticate .NET Applications with Azure Services
Feb 17, 2025.
Authenticating .NET applications to Azure services securely and efficiently is critical for modern cloud development. This article explores how to use the Azure Identity library and the DefaultAzureC class to streamline authentication across various environments, ensuring your application can access Azure resources.
Unit Testing in .NET Core with NUnit
Feb 17, 2025.
This article covers the basics of NUnit, setting up a test project, writing and running unit tests, using assertions, and best practices for effective test automation. Enhance your .NET applications with reliable, automated testing using NUnit.
Power of Dapper in .Net Core
Feb 16, 2025.
Dapper is a high-performance micro ORM for .NET Core, known for its speed and efficiency in database access. It simplifies SQL execution, object mapping, and data retrieval while maintaining flexibility.
Using Bitmap Compare Two Images in .NET Core
Feb 15, 2025.
This article covers pixel-by-pixel comparison, detecting differences, and analyzing visual changes in images using C#. Ideal for developers working with image processing, graphics analysis, or automated testing.
Creating a ListView MAUI MVVM .NET 9 [GamesCatalog] - Part 2
Feb 14, 2025.
Create a MAUI .NET 9 project that displays game information using a ListView. Bind a ViewModel with an ObservableCollection of UIIGDBGame items, and design a clean UI using XAML, Grid, and custom styling for a game catalog.
Why .NET is Still One of the Best Frameworks for Enterprise Development
Feb 12, 2025.
Discover why .NET remains a top choice for enterprise development. From scalability and security to cross-platform capabilities, .NET offers a robust framework for building high-performance applications.
Explore the Key Features of .NET 9
Feb 11, 2025.
Microsoft’s release of .NET 9 continues its mission to enhance the developer experience, optimize performance, and expand its feature set for modern application development, whether you’re a seasoned .NET developer or just starting.
Open API Documentation and Swagger alternatives in .NET 9
Feb 11, 2025.
The Microsoft.AspNetCore.OpenApi package enables OpenAPI documentation in .NET Core APIs. It supports Swagger UI, ReDoc, and Scalar UI for enhanced API visualization, making API integration, testing, and documentation seamless.
CQRS and Mediator Pattern in a .NET 8 Web API
Feb 10, 2025.
This article explains how to implement CQRS and Mediator patterns in a .NET 8 Web API. It covers the benefits of separating read and write operations with CQRS, and how the Mediator pattern reduces dependencies between objects.
Dynamic CORS Setup in .NET Core with JSON Configuration
Feb 09, 2025.
Learn how to configure CORS dynamically in .NET Core 9 using appsettings.json. Manage multiple allowed origins easily, enhance security, and improve flexibility for different environments like development, staging, and production.
How to Enable CORS in a .NET 9 API
Feb 08, 2025.
Learn how to enable Cross-Origin Resource Sharing (CORS) in a .NET API to allow requests from different domains. Configure CORS policies in the Program.cs, set allowed origins, and ensure security by restricting origins in production.
Overload Resolution Priority in .NET 9
Feb 07, 2025.
The .NET9 framework introduced a new feature named overload_resolution_priority, which plays a crucial role in resolving method groups. This priority is represented as a 32-bit integer. By default, all methods have an overload_resolution_priority of 0.
Class Fixture xUnit in .NET Core Test Project
Feb 06, 2025.
This article explains how to implement Class Fixtures in an xUnit test project, manage shared test contexts, and use dependency injection for better test organization and performance.
How to Add Swagger in .NET 9?
Feb 06, 2025.
Swagger is an essential tool for documenting and testing APIs. In .NET 9. In .NET 9, Swagger integration requires manual setup by adding the Swashbuckle.AspNetCore NuGet package and configuring it in Program.cs and launchSettings.json to document and test APIs.
Semi Auto Implemented Properties in .NET 9
Feb 06, 2025.
Semi Auto implemented Properties is currently Preview feature of C#13. This feature really helps Enhanced readability and reduced boilerplate code while declaring properties in class files.
Cracking Advanced .NET Interviews: A Real-World Journey
Feb 05, 2025.
In a high-pressure senior .NET developer interview, candidates are tested on system design, scalability, performance optimization, security, Azure cloud, microservices, API design, DevOps, and advanced C# concepts, focusing on real-world expertise.
Understanding UUID v7 in .NET 9
Feb 05, 2025.
.NET 9 introduces UUID v7, which includes a timestamp for better ordering of UUIDs based on creation time. It provides a unique identifier with 48-bit timestamp, 12-bit, and 62-bit random components for enhanced uniqueness.
A Better .NET SQL Builder: KnightMoves.SqlObjects
Feb 04, 2025.
KnightMoves.SqlObjects is a .NET SQL builder that is built entirely on objects, making it orders of magnitude more powerful and feature-rich than any string manipulating SQL builder could ever be. If you use SQL in your .NET application with ORMs like Dapper, for example, this library is for you.
Implement Scalar UI in .NET API with Authorization Option
Feb 03, 2025.
This article covers how to integrate Scalar UI, set up role-based authorization, and implement secure user authentication within your .NET API to ensure smooth, secure interactions.
Enhancing Blazor Virtualization for Large Data Sets in .NET 9
Jan 29, 2025.
Explore how virtualization in Blazor enhances performance for large data sets in .NET 9. Learn techniques to optimize rendering, improve scalability, and build high-performance web apps with Blazor's powerful features.
Boosting Performance with Lazy Loading in C# .NET Core
Jan 27, 2025.
Learn how to boost performance in C# .NET Core applications using lazy loading. This technique defers object initialization until needed, optimizing memory usage and improving load times.
Stopwatch for Performance Monitoring in .NET Core Applications
Jan 27, 2025.
Stopwatch helps to identify the performance of your applications. Explore the use of the Stopwatch class in .NET Core for performance monitoring in distributed systems. Learn its advantages, benchmarks, best practices, and advanced alternatives for high-throughput applications.
Building a Real-Time Chat Application with SignalR in Blazor .Net 9
Jan 26, 2025.
In this article, we'll explore how to create a real-time chat application using SignalR and Blazor Server. SignalR is a library for ASP.NET developers that simplifies adding real-time web functionality to applications. With SignalR, we can enable server-client communication in real-time, which is perfect for a chat app.
Mastering BenchmarkDotNet: The Essential Benchmarking Library for .NET Developers
Jan 23, 2025.
Mastering BenchmarkDotNet: The Essential Benchmarking Library for .NET Developers guides you through using BenchmarkDotNet, a powerful tool for measuring and optimizing the performance of .NET applications.
Modern ADO .Net with SQLite in VB and C#
Jan 22, 2025.
This article demonstrates how to connect SQLite with ADO .NET in C# and VB, showcasing database operations such as creating tables, inserting records, and reading data. It uses the Microsoft.Data.Sqlite package in .NET Core environments.
Working with gRPC API in .NET 8
Jan 21, 2025.
We create a simple gRPC service using .NET C# to perform CRUD operations on a book management system. Learn how to define a .proto file, implement server-side logic, and test with tools like Postman for efficient communication.
Build Cross-Platform Apps with .NET MAUI Blazor Hybrid
Jan 21, 2025.
There is a way to combine the capabilities of .NET MAUI and Blazor to create applications with a single codebase that works on mobile, desktop, and web platforms. In this article, I will demonstrate how to achieve this.
Creating a MAUI .NET 9 Project [GamesCatalog] - Part 1
Jan 19, 2025.
Create a mobile app with a C# .NET backend using the IGDB API for a game catalog and reviews. Features include search screens, XAML layouts, CommunityToolkit integration, .NET 9, and a refined, user-friendly interface.
Entity Framework (5-1), With .Net Core MVC, Database-First --- Scaffold-DbContext
Jan 18, 2025.
This article is to discuss the reverse engineering command Scaffold-DbContext by AI.
Dynamic Rules Engine for User Workflows in .NET Financial Apps
Jan 17, 2025.
Implement a dynamic .NET Rules Engine for financial workflows with user-specific rules. Customize logic based on roles, transactions, and account types. Enable fraud detection, compliance, and real-time audit logging for scalability.
Breaking Changes in .NET Build Tools 8.0.0 to 8.0.11
Jan 14, 2025.
This article explains the cause, including breaking changes in build tools, and provides solutions using updated build configurations and global.json settings.
Working with GraphQL API in .NET 8 Using HotChocolate
Jan 13, 2025.
This article covers setting up a GraphQL server, defining queries and mutations, integrating with .NET 8 applications, and optimizing your API development process. Explore HotChocolate’s features for building robust APIs.
The Ultimate Guide to Writing NUnit Unit Tests in .NET 9
Jan 10, 2025.
Demonstrates how to write robust and reliable unit tests in .NET 9 using NUnit. This article teaches developers how to write effective unit tests in .NET 9 using NUnit, covering test setup, assertions, mocks, and best practices to enhance code reliability and bug reduction.
Learn Access Modifiers in .NET Core
Jan 09, 2025.
Learn how these modifiers control access to classes, methods, and variables, enhancing encapsulation and security in C#. Perfect for developers looking to master access control in .NET Core.
Bringing Legacy .NET Framework Applications into the Modern Era
Jan 08, 2025.
With this guide, you'll learn how to migrate your legacy .NET Framework apps to .NET 9, without refactoring code. It also discusses namespace updates, error handling improvements, and unit testing strategies to ensure a smooth transition. By Ziggy Rafiq.
A Comprehensive Guide for Enterprise Developers on .NET 9
Jan 07, 2025.
Ziggy Rafiq explains how enterprise developers can leverage high-performance APIs, real-time dashboards, and advanced security features using practical examples and best practices.
The Importance of Unit Testing in .NET Applications
Jan 07, 2025.
Unit testing is a crucial practice in .NET applications that helps ensure code reliability, maintainability, and efficiency. By using frameworks like NUnit, MSTest, and XUnit, developers can automate tests, catch bugs early, and improve code quality.
10 Key Resolutions to Master .NET Development in 2025
Jan 05, 2025.
Discover the top 10 resolutions to elevate your .NET development skills in 2025. From mastering .NET 8 features and C# updates to exploring ASP.NET Core, Blazor, and microservices, this guide helps you stay ahead.
Moq Unit Testing in .NET Core with xUnit
Jan 03, 2025.
This guide covers mocking dependencies, setting up test projects, and writing efficient unit tests for your applications. Perfect for developers seeking to enhance their testing skills and build robust software.
Bulk and Transactional Batch Operations with the Azure Cosmos DB .NET
Dec 30, 2024.
Azure Cosmos DB provides Bulk and Transactional Batch Operations for efficient data management. Bulk Operations support high-throughput processing across multiple partition keys, while Transactional Batches ensure atomicity within a single partition.
What is .NET Aspire?
Dec 30, 2024.
.NET Aspire enhances application development with modern practices, cross-platform support, scalability, and cloud-native capabilities. Leverage powerful tools, rich libraries, and community support to build high-performance solutions.
Discover the Exciting New Features in .NET Aspire 9
Dec 27, 2024.
.NET Aspire 9 is here, bringing a host of powerful features and enhancements to help developers build, manage, and deploy applications faster and more efficiently. As the latest major release from Microsoft, .NET Aspire 9 focuses on improving developer experience.
API Gateway Example with .NET and Ocelot
Dec 26, 2024.
Discuss the concept of an API Gateway using a sample .NET (Core) application. In this example, Ocelot (version 23.4.2) is used to manage key functionalities such as routing, rate limiting, and caching.
Containerize React JS and .NET Core Apps using Azure Kubernetics Service (AKS)
Dec 24, 2024.
This article covers the entire process, from setting up Docker containers for your apps to deploying and managing them on AKS. Explore container orchestration, scaling, and cloud-native solutions with Azure.
Custom middleware in .Net core
Dec 24, 2024.
Create a custom middleware in .NET Core to handle unhandled exceptions, and log errors, and return a user-friendly JSON response. Integrate it into the pipeline and test with endpoints to ensure robust error management.
Excel Sheet Encryption using AES encryption in .Net
Dec 23, 2024.
Learn how to use AES encryption in C# to secure data by encrypting and decrypting files, including CSV or Excel. Explore FileStream, CryptoStream, and the System.Security.Cryptography namespace for robust data protection.
How to use AutoMapper in .NET Web API
Dec 20, 2024.
In this article, we are going to explore how to use AutoMapper in the .NET Web API Application with examples. How to use AutoMapper in .NET Web API
Implement FluentValidation in a .NET Web API
Dec 20, 2024.
Learn how to implement data validation in a .NET Web API using FluentValidation. Explore creating validation rules, handling nested objects, custom validations, and conditional logic. Customize error messages for user-friendly responses.
Implement the Mediator Pattern in a .NET Web API
Dec 17, 2024.
Learn how to implement the Mediator Pattern in a .NET Web API using the MediatR library. This design pattern reduces tight coupling between components by centralizing communication through a mediator.
Implement Basic, Custom and Multiple Health Checks in .NET Web API
Dec 16, 2024.
In this article, we are going to learn about Implement Basic, Custom and Multiple Health Checks in .NET Web API. This article explains Health Check implementation in .NET Web API, covering basics, customizations, multiple checks, and practical code examples for monitoring application and dependency health effectively.
Unit Testing in .NET Core with xUnit
Dec 16, 2024.
One of the main aspects of software testing that a developer can manage themselves is unit testing. It is employed to test your code's tiniest elements. Unit tests are used to verify that your code is functioning as intended or producing the desired results as you develop it.
Connection String in ASP.NET Core MVC .NET 8
Dec 13, 2024.
Learn how to manage and use connection strings in applications, explore AppSettings.json, environment variables, and static classes, and understand their implementation with sample code for seamless database connectivity.
New LINQ Methods in .NET 9: Index, CountBy, and AggregateBy
Dec 11, 2024.
In this article, I will showcase the new methods: Index, CountBy, and AggregateBy. These powerful additions in .NET 9 bring significant enhancements to LINQ, aimed at improving your coding experience and simplifying data manipulation tasks.
The Complete Guide to NUnit Testing in C# 13 and .NET 9
Dec 10, 2024.
This comprehensive guide explains NUnit testing in C# 13 with .NET 9 with detailed explanations, modern testing techniques, and practical code examples. Authored by Ziggy Rafiq.
Session in ASP.NET Core MVC .NET 8
Dec 10, 2024.
This article covers enabling sessions in .NET 8 ASP.NET Core MVC, storing/retrieving session values, managing session keys, and implementing session handling with step-by-step examples and code walkthroughs.
SQLite Database with .NET Example
Dec 10, 2024.
SQLite is a lightweight, file-based relational database ideal for small web, mobile, and .NET applications. This guide demonstrates SQLite integration, CRUD operations, and database handling using C#.
Implement Hybrid Cache in .NET 9 + Redis Caching
Dec 09, 2024.
Hybrid cache simplifies .NET caching by unifying in-memory and distributed approaches. It supports extensible code, concurrency management, multi-source caching, Redis integration, serialization, and customizable features for robust caching solutions.
Token Caching in .NET 8 with Microsoft Entra ID
Dec 07, 2024.
Learn how to optimize .NET 8 web apps with token caching using Microsoft Entra ID. Discover in-memory and distributed caching strategies to boost performance, reduce latency, and improve scalability in authentication processes.
Rate Limiting In .NET Core
Dec 07, 2024.
This article explores implementing rate limiting using middleware, configuring policies, and handling scenarios like API throttling. Learn to optimize your applications effectively with ASP.NET Core.
Goodbye Swagger: How .NET 9 is Redefining API Documentation
Dec 06, 2024.
Explore the changes in .NET 9 API documentation as Swagger is removed from templates. Learn about alternatives like Microsoft.AspNetCore.OpenApi, NSwag, and custom UIs to adapt workflows and ensure seamless API visualization.
ASP.NET Core CRUD using Dapper, .NET 8 using SQL Server
Dec 05, 2024.
Learn to build a CRUD (Create, Retrieve, Update, Delete) application in ASP.NET Core MVC using .NET 8 and Dapper ORM. This guide covers creating models, repositories, controllers, and Razor views with SQL Server integration.
Create Worker Service and Deploy as Windows Service .NET Core
Dec 04, 2024.
In this article, we will learn how to create a .NET Worker Service in Visual Studio, configure it as a Windows Service, and manage it using commands for seamless background task execution.
Understanding .http Files in .NET 8
Dec 01, 2024.
Discover how to enhance API testing with Visual Studio's .http file feature. Learn to create and execute HTTP requests directly within the IDE, eliminating the need for external tools like Postman.
Enhanced Exception Handling with IExceptionHandler in .NET Core 8
Nov 28, 2024.
Learn about IExceptionHandler in .NET 8, a robust interface for handling exceptions in ASP.NET Core. Streamline error handling with custom logic, modular design, standardized API responses, and enhanced user-friendly error management.
Learn To Use FileSystemWatcher in .NET 9
Nov 27, 2024.
This article covers the setup, key features, and practical examples for tracking events like the creation, modification, deletion, and renaming of files or folders, making your file-handling tasks seamless and efficient.
Dependency Injection (DI) in .NET Core
Nov 27, 2024.
In this article, we will learn how to configure services, implement constructor injection, and understand DI lifetimes (scoped, transient, singleton) for efficient application design.
OpenAPI Document Generation in .NET 9 APIs
Nov 27, 2024.
Explore Open API support in .NET 9 for seamless API documentation and integration. With Microsoft.AspNetCore.OpenApi, easily generates OpenAPI documents for APIs, customizes endpoints, adds authorization headers, and supports multiple servers.
Implement a retry policy in .NET 6 Applications with Polly
Nov 24, 2024.
Learn how to enhance fault tolerance in .NET 6 applications using Polly. This powerful library helps handle transient faults, timeouts, and resource unavailability with features like retry policies, circuit breakers, and fallback mechanisms.
Working with JSON in .NET Core: Newtonsoft.Json, NetJSON, and System.Text.Json
Nov 24, 2024.
In this article, we will learn three effective approaches to working with JSON in .NET Core using popular libraries: Newtonsoft.Json, NetJSON, and System.Text.Json.
Web API Development in .NET Core
Nov 22, 2024.
Basic concepts of Web API development in .NET Core. Explore the essentials of Web API development in .NET Core with this beginner-friendly guide. Learn step-by-step techniques to build, deploy, and optimize robust APIs for modern applications.
Advanced C# 13 and .NET 9 Features for Expert .NET Engineers
Nov 22, 2024.
With this guide, you will learn about enhanced pattern matching, static abstract members, Native AOT, and much more in C# 13 and .NET 9. Written by Ziggy Rafiq, this is the best resource for experienced .NET Software Engineer Leads.
Setup .NET Core on Windows Server with IIS Migration
Nov 21, 2024.
This guide covers the installation of software required for .NET Core on Windows Server and the process of configuring IIS for hosting .NET Core applications.
Webgrid and Gridview in ASP.NET Core and .NET Core Explained
Nov 21, 2024.
Learn dynamic paging and sorting in .NET Core using JavaScript and jQuery. Modify URLs with query strings for seamless server interaction, leveraging Bootstrap for responsive design and intuitive user experience.
Understanding .NET Binary Serialization
Nov 19, 2024.
.NET Binary Serialization simplifies the process of converting objects into binary formats for efficient storage or data transfer. This guide explores serialization techniques, the BinaryFormatter class, custom serialization, and best practices.
Repository Pattern in .NET Core for Clean Data Access
Nov 15, 2024.
Learn how to separate business logic from data logic, enhance testability, and reduce code duplication. By following these best practices, you’ll achieve modular, scalable applications in .NET Core.
Increase Application Performance using Task.Run in .NET Core
Nov 15, 2024.
Explore the power of Task.Run in .NET Core to efficiently handle background tasks like logging, report generation, and email sending, enhancing application performance and responsiveness without blocking the main thread.
Understanding Keyed Services in .NET 8
Nov 13, 2024.
Keyed Services in .NET 8 enhance dependency injection by allowing multiple implementations of an interface to be registered with unique keys. This enables flexible dependency resolution, ideal for tailored service instances in applications.
Types of Error Handling in Web API .NET 8 with Example
Nov 13, 2024.
Error handling is a mechanism to take control of unexpected situations that occur in the system during processing and return any helpful error response from a NET 8 Web API. That said, here are some different ways to do error handling,
Beginner's Guide to CRUD Operations in .NET Core 8 Web API
Nov 12, 2024.
This guide walks you through creating a .NET Core 8 Web API for managing employee data with full CRUD operations. Using Entity Framework Core, you’ll define models, connect to a SQL database, create endpoints, and perform migrations.
How to Apply Custom Fonts in .NET MAUI
Nov 07, 2024.
Learn how to add and apply custom fonts in your .NET MAUI app to enhance design and branding. This guide covers adding font files, registering fonts in MauiProgram.cs, and using them in XAML or C#.
1
-
100
of
7901
<<
1
2
3
4
5
>>
Search
OUR TRAINING
Discovery to Delivery
Employing the latest technologies, Over-C's capabilities include web and mobile development, software and database architecting as well as visual and UX design.