TECHNOLOGIES
NEWS
VIDEOS
FORUMS
Trainings
BOOKS
EVENTS
MORE
INTERVIEWS
JOBS
Live
LEARN
CAREER
MEMBERS
BLOGS
CHALLENGES
CERTIFICATIONS
Bounties
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
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]
Vishal Gami(39)
Rajesh Gami(21)
Sandhiya Priya(9)
Raghunath B(6)
Dinesh Gabhane(4)
Mahesh Chand(3)
Vishal Joshi(3)
Mohan Veer Singh(2)
Ananya Desai(2)
Ajay Narkhedkar(2)
Jignesh Trivedi(1)
Darshan Adakane(1)
Keshaw Kumar Thakur(1)
Gowtham K(1)
Deepika Sawant(1)
Nidhi Kumari(1)
Sudhir Vaghela(1)
Sangeet Shah(1)
Ck Nitin(1)
Latest First
Oldest First
Most Viewed
Sort By
Search Results
No search result found
Anti-Patterns to Avoid When Using Memory Pools in ASP.NET Core
Jan 12, 2026.
Discover the top 10 memory pooling anti-patterns in ASP.NET Core from an MVP perspective. Learn how to avoid runaway memory usage, GC pressure, and false memory leaks while leveraging .NET 10’s automatic pool trimming.
Which NuGet packages are essential for building enterprise-grade ASP.NET Core apps using clean architecture
Jan 12, 2026.
Essential NuGet packages for building robust, scalable ASP.NET Core enterprise applications using clean architecture. Learn to enhance security, resilience, and maintainability.
How Do CQRS and MediatR Improve Architecture in ASP.NET Core Web APIs
Jan 11, 2026.
Explore CQRS and MediatR in ASP.NET Core for cleaner, scalable Web APIs. Separate read/write operations, decouple components, and improve maintainability.
How to Upgrade ASP.NET MVC to .NET Step by Step
Jan 11, 2026.
Learn how to upgrade an ASP.NET MVC application from .NET Framework to modern .NET using a proven step by step migration strategy. This in depth guide covers architecture changes, routing, controllers, views, configuration, authentication, and deployment best practices.
Smarter Memory Management for Long-Running Apps: ASP.NET Core in .NET 10 Automatically Releases Unused Pooled Memory
Jan 12, 2026.
.NET 10 enhances ASP.NET Core with automatic pooled memory trimming, reducing memory usage in long-running apps like APIs and services. Learn how it works and benefits you!
Migrate ASP.NET Web API from .NET Framework to .NET Step by Step
Jan 11, 2026.
Migrate ASP.NET Web API 2 on .NET Framework to ASP.NET Core Web API on modern .NET with a practical step by step tutorial. Learn how to rebuild the host, replace System.Web, migrate routing, controllers, filters, authentication, configuration, and deployment.
Why ASP.NET Core Is a Top Choice for Web Development in 2026
Jan 09, 2026.
Why ASP.NET Core is a top choice for web development in 2026. Learn about real-world performance, cloud-native architecture, security, APIs, DevOps readiness, and enterprise adoption.
How Do I Improve Performance in ASP.NET Core APIs?
Jan 09, 2026.
Learn how to speed up ASP.NET Core APIs with real engineering techniques covering middleware, routing, JSON, EF Core, caching, async, concurrency, logging, HTTP, and deployment tuning, with code examples and a production checklist.
Clean Architecture in ASP.NET Core: Core Concept and Guide
Jan 08, 2026.
Master Clean Architecture in ASP.NET Core! Build maintainable, testable, and scalable applications with clear separation of concerns. Practical guide included!
Cloud and Container-Ready in ASP.NET Core
Jan 07, 2026.
Unlock the power of cloud-native ASP.NET Core applications! This guide explores how to build and deploy ASP.NET Core apps optimized for cloud environments and containerization. Learn best practices for Dockerizing, deploying to Kubernetes, and leveraging cloud services. Discover how to create scalable, resilient, and cost-effective solutions for modern application development using ASP.NET Core.
Observability Becomes a First-Class Feature in ASP.NET Core
Jan 03, 2026.
Unlock ASP.NET Core's built-in observability! Monitor app health with metrics, logs, and tracing. Learn setup, coding examples, dashboards, and production tips.
Middlewares in ASP.NET - A simple guide
Jan 03, 2026.
This guide simplifies middleware, explaining how it processes requests, manages security, and enhances your app's functionality. Learn about built-in and custom options for a robust pipeline.
Stop Redirects in ASP.NET Core APIs: Return Proper HTTP Status Codes for Authentication
Jan 01, 2026.
Learn how to fix authentication redirects in ASP.NET Core APIs by returning proper HTTP status codes like 401 and 403 instead of 302. Includes real-world examples, best practices, and a complete HTTP status code reference for API developers.
Use async/await to Prevent Blocking Requests in ASP.NET Core APIs
Jan 01, 2026.
Boost ASP.NET Core API performance with async/await! Learn how to prevent blocking requests, improve scalability, and enhance responsiveness using a practical Customer API example.
Building RESTful APIs Using ASP.NET Core– A Practical Book Management API
Jan 01, 2026.
Learn to build RESTful APIs with ASP.NET Core! This tutorial guides you through creating a Book Management System, covering models, controllers, and endpoints. Perfect for beginners!
Globalization and Localization in ASP.NET Core
Jan 01, 2026.
Explore globalization and localization in ASP.NET Core. Learn to build culture-aware apps with date/currency formatting, UI translation, and resource files for diverse users.
Multi-Language CRUD Project in ASP.NET Core Web API
Jan 01, 2026.
Build a multi-language ASP.NET Core Web API with CRUD operations! Learn to implement localization using resource files and the IStringLocalizer for global reach.
Middleware in ASP.NET Core: Custom Implementations
Jan 01, 2026.
Learn how to create custom middleware in ASP.NET Core to handle cross-cutting concerns like logging, authentication, and error handling. Centralize your logic and keep your code clean!
Building a Three‑Toggle Filter in ASP.NET with CASE Conditions
Jan 01, 2026.
Implement a dynamic three-toggle filter (All, Pending, Replaced) in ASP.NET WebForms using CASE statements in SQL. Streamline data filtering with a single query and Repeater.
Conditionally Bypassing Middleware in ASP.NET Core
Dec 29, 2025.
Learn how to conditionally bypass middleware in ASP.NET Core for optimized performance and logic. Explore 6 real-world approaches for .NET 8 & .NET 9 apps.
Cancellation Tokens in ASP.NET Core: Graceful Long-Running Operations
Dec 26, 2025.
Master ASP.NET Core cancellation tokens for graceful handling of long-running operations! Prevent wasted resources and improve scalability by respecting client disconnects and timeouts.
Refresh Token Implementation in ASP.NET Core
Dec 24, 2025.
Implement refresh tokens in ASP.NET Core 8.0 for secure and seamless authentication! Learn about rotation, revocation, and best practices for JWT management.
Faster, Leaner, Better: The ASP.NET Core Refinements You Can’t Ignore in .NET 10
Dec 22, 2025.
Discover what’s new in ASP.NET Core with .NET 10. Explore enhance security, observability, and performance for production apps. Discover improvements in Blazor, APIs, and authentication!
Understanding [HttpGet] and [HttpPost] in ASP.NET MVC
Dec 22, 2025.
Master ASP.NET MVC with [HttpGet] and [HttpPost]! Learn how to handle GET/POST requests, prevent errors, and build secure, maintainable web applications. Real-world examples included.
Concurrent Login Control Using Session Count in ASP.NET WebForms
Dec 22, 2025.
Secure your ASP.NET WebForms app! Learn to control concurrent logins using session count, database tracking, and automatic session expiration. Enhance security and prevent misuse.
Understanding Middleware Ordering and Pipeline Execution in ASP.NET Core
Dec 18, 2025.
Understand how middleware ordering and pipeline execution work in ASP.NET Core with simple explanations, real-world examples, and clear code snippets for enterprise applications.
Configuring EF Core Database Connections in ASP.NET Core
Dec 17, 2025.
A complete guide to configuring database connections in ASP.NET Core using EF Core. Learn how to use IDesignTimeDbContextFactory, configure DbContext in Program.cs/Startup.cs, and use the OnConfiguring fallback method for design-time and runtime scenarios.
Enterprise-Grade Microsoft Graph API Authentication in ASP.NET Core MVC
Dec 16, 2025.
From this article, you will learn how to integrate the MS Entra ID with the ASP.NTE MVC application with a Client certificate to access the MS Graph API endpoints
Post-Redirect-Get (PRG) Pattern Example in ASP.NET Core
Dec 15, 2025.
Implementing the Post-Redirect-Get (PRG) Pattern in ASP.NET Core
Building a Smart CRM with ASP.NET Core, Angular, and AI Predictions
Dec 16, 2025.
Build a smart CRM with ASP.NET Core, Angular, and AI. Predict customer behavior, boost sales, and gain actionable insights. Learn architecture & best practices.
Synchronous vs Asynchronous Controllers in ASP.NET Core Explained
Dec 16, 2025.
Understand the difference between synchronous and asynchronous controllers in ASP.NET Core. Learn how each approach works, their performance impact on high-traffic systems, and when to choose async over sync with simple examples.
How to Connect SharePoint Using ASP.Net Core Azure Function (Isolated worker model) ?
Dec 14, 2025.
this article is about to connect with SharePoint using ASP.Net azure function. and fetch data from SharePoint list.
How to Use AI Agents in an ASP.NET MVC Project (Beginner to Advanced Guide)
Dec 11, 2025.
This article explains how to integrate AI Agents (OpenAI / OpenAI Assistants / LangChain-style agents) in an ASP.NET MVC application. It covers architecture, controller/service design, dependency injection setup, API calling strategies, prompt engineering, real-use cases, performance guidelines, and security best practices.
Building Maintainable Applications Using the Repository Pattern in ASP.NET Core
Dec 06, 2025.
This article provides a complete and descriptive guide to the Repository Pattern in C# and ASP.NET Core. It explains what the repository pattern is, why it is used, and how it helps achieve clean architecture, separation of concerns, and maintainability. With detailed explanations, step-by-step implementation, generic and specific repositories, code examples, dependency injection usage, best practices, and real-world scenarios, this guide is ideal for beginners and advanced developers building scalable and testable .NET applications.
Exception Handling in ASP.NET Core
Dec 05, 2025.
This article provides a complete, easy-to-understand, and professional guide to Exception Handling in ASP.NET Core. It explains what exceptions are, why proper error handling is important, and how to implement try–catch, global exception middleware, built-in error handling, custom exception filters, structured ProblemDetails responses, validation errors, and logging using best practices. Ideal for beginners and experienced .NET developers, this article teaches how to build stable, secure, and production-ready applications with proper exception handling techniques.
Building Blockchain-Based Applications with ASP.NET Core and Angular
Dec 04, 2025.
Build scalable blockchain apps with ASP.NET Core and Angular. Explore architecture, implementation, and best practices for secure, efficient development.
Using SQL Server Full-Text Search in an ASP.NET Core + Angular Application
Dec 04, 2025.
Implement fast, scalable search in your ASP.NET Core + Angular apps using SQL Server Full-Text Search. Boost performance with relevance-based results. Ideal for large datasets.
Dynamic Email Generation with AI and ASP.NET Core
Dec 04, 2025.
Build dynamic email generation in ASP.NET Core with AI! Learn architecture, best practices, & real-world patterns for personalized, scalable email campaigns. Boost engagement & open rates.
Securing REST APIs with API Keys and JWT Tokens in ASP.NET Core
Dec 04, 2025.
Secure your ASP.NET Core REST APIs using API keys and JWT tokens. Learn implementation, best practices, and production-ready security strategies for robust APIs.
Building Interactive SQL Server Reports in ASP.NET Core
Dec 04, 2025.
Build interactive SQL Server reports in ASP.NET Core! Learn to design, implement, and optimize dynamic, drillable reports with best practices for scalability.
Preventing SQL Injection in ASP.NET Core APIs
Dec 04, 2025.
Secure your ASP.NET Core APIs! Learn to prevent SQL injection with parameterized queries, EF Core, input validation, and best practices for robust security.
Using ASP.NET Core Data Protection with SQL Server
Dec 04, 2025.
Secure ASP.NET Core apps by storing Data Protection keys in SQL Server. Learn to encrypt data, manage keys, and ensure consistency across multiple servers.
Implementing Role-Based Security in ASP.NET Core + Angular Apps
Dec 04, 2025.
Secure your ASP.NET Core & Angular apps with role-based access control (RBAC). This guide covers API security, JWT, Angular route guards, and UI rendering for robust access management.
Integrating Angular Material with ASP.NET Core for a Modern UI
Dec 04, 2025.
Build modern enterprise apps with ASP.NET Core and Angular Material! This guide covers setup, UI, theming, best practices, and deployment for stunning results.
Gamifying Learning Platforms with ASP.NET Core, Angular, and AI
Dec 04, 2025.
Build engaging learning platforms! ASP.NET Core, Angular, and AI combine for personalized, gamified experiences. Boost motivation and knowledge retention.
Implementing Rate Limiting for ASP.NET Core APIs
Dec 04, 2025.
Protect your ASP.NET Core APIs with rate limiting! Learn to implement robust strategies using middleware, built-in features, and Redis for scalability and security.
Integrating Machine Learning Models into ASP.NET Core Applications
Dec 04, 2025.
Integrate AI into ASP.NET Core! This guide covers ML.NET, ONNX, Python microservices, and cloud models for scalable, enterprise-grade intelligent apps.
Using Generative AI in ASP.NET Core Web Applications
Dec 04, 2025.
Integrate generative AI into ASP.NET Core web apps for dynamic content, chatbots, & more. Learn architecture, security, & best practices for AI-driven features.
Implementing Two-Factor Authentication with Angular and ASP.NET Core
Dec 04, 2025.
Secure your Angular & ASP.NET Core apps with Two-Factor Authentication (2FA)! This guide covers TOTP, email/SMS OTP, best practices, and deployment strategies. Learn to protect user accounts effectively.
Implementing Sentiment Analysis in ASP.NET Core + Angular Applications
Dec 03, 2025.
Implement sentiment analysis in your ASP.NET Core + Angular apps! Learn to analyze text, build a backend API, integrate with Angular, and optimize for production.
Deploying ASP.NET Core + Angular Applications to Azure
Dec 03, 2025.
Deploy ASP.NET Core & Angular apps to Azure! This guide covers setup, deployment strategies, CI/CD, monitoring, and optimization for a scalable application.
Hangfire Cron Jobs Full Details Using ASP.NET Core
Dec 03, 2025.
Master Hangfire cron jobs in ASP.NET Core! Learn setup, scheduling, best practices, and real-world examples for reliable background task automation. Monitor via dashboard.
How to Call Azure Cognitive Services from ASP.NET Core APIs
Dec 03, 2025.
Integrate Azure Cognitive Services into ASP.NET Core APIs for intelligent apps. Learn to authenticate, handle errors, and design scalable solutions using AI.
Image Recognition in Angular Using ASP.NET Core Backend
Dec 03, 2025.
Build a scalable image recognition app using Angular and ASP.NET Core. Covers architecture, implementation, performance, security, and deployment best practices.
Building AI-Powered Personalized Learning Dashboards with Angular and ASP.NET Core
Dec 03, 2025.
Build AI-powered personalized learning dashboards using Angular, ASP.NET Core, and ML.NET. Deliver tailored insights, course recommendations, and analytics.
Building AI-Based Chatbots with ASP.NET Core Backend and Angular Frontend
Dec 03, 2025.
Build a full-stack AI chatbot with Angular and ASP.NET Core! Learn to integrate with AI services, handle security, and implement best practices for production.
Using SQL Server Full-Text Search in an ASP.NET Core + Angular App
Dec 03, 2025.
Implement efficient search in your ASP.NET Core + Angular apps using SQL Server Full-Text Search. Learn architecture, backend/frontend integration, and best practices.
Deploying AI Models to Azure App Services with ASP.NET Core
Dec 03, 2025.
Deploy AI models to Azure App Services using ASP.NET Core. Learn best practices for scalable, secure, and production-ready AI applications. Includes model integration and storage.
Integrating Machine Learning Models into ASP.NET Core Applications
Dec 03, 2025.
Learn how to integrate machine learning models into ASP.NET Core apps using ML.NET, ONNX, and external APIs. Build intelligent, production-ready applications!
Securing ASP.NET Core APIs
Dec 02, 2025.
Comprehensive guide to securing ASP.NET Core APIs. Learn authentication, authorization, data protection, rate limiting, and more with code examples and best practices.
Handling High Traffic with ASP.NET Core
Dec 02, 2025.
Master ASP.NET Core for high traffic! Learn caching, load balancing, async programming, and database optimization to build fast, scalable web applications.
CSRF Protection In ASP.NET Core
Dec 02, 2025.
Protect your ASP.NET Core apps from CSRF attacks! This practical guide covers anti-forgery tokens, Razor, APIs, Angular, cookies, and real-world implementation patterns.
Auto Logout After Token Expiration | Angular + ASP.NET Core JWT
Dec 02, 2025.
Secure your Angular apps! Implement auto logout with JWT expiration in ASP.NET Core. This guide covers token handling, interceptors, guards, and more for robust security.
Email Sending Feature Using ASP.NET Core API + Angular Form
Dec 02, 2025.
Build a robust email sending feature with ASP.NET Core API and Angular! This tutorial covers backend setup, frontend form creation, and SMTP integration using MailKit for professional HTML emails.
Reducing API Response Time Using ASP.NET Core API: A Complete Guide
Dec 02, 2025.
Boost ASP.NET Core API performance! This guide covers database optimization, caching, async programming, and profiling to reduce response times and improve scalability.
Account Lockout After Failed Login Attempts | ASP.NET Core, Angular, and SQL Server
Dec 02, 2025.
Implement account lockout in ASP.NET Core, Angular, and SQL Server to prevent brute-force attacks. Secure your web app with login attempt tracking and automatic unlock.
How to Pass Data Between Angular and ASP.NET Core API
Dec 02, 2025.
Learn how to seamlessly pass data between Angular and ASP.NET Core! This guide covers GET, POST, PUT, DELETE, CORS, testing, and troubleshooting for web devs.
Using AutoMapper in ASP.NET Core for Cleaner Full-Stack Code
Dec 02, 2025.
Simplify ASP.NET Core full-stack development with AutoMapper! Learn to map DTOs, ViewModels, and Entities for cleaner, maintainable, and secure code. Boost your productivity!
Model Validation in ASP.NET Core Using Data Annotations
Dec 02, 2025.
Master ASP.NET Core model validation using Data Annotations! This guide covers everything from basic attributes to custom rules, ensuring secure and reliable web apps.
Health Checks in ASP.NET Core: A Complete Guide for Reliable Applications
Dec 02, 2025.
Implement health checks in ASP.NET Core for reliable apps. Monitor databases, APIs, and more. Learn to integrate with Angular and DevOps tools for proactive maintenance.
Building an Email Verification System with HTML Templates in ASP.NET Core and Angular
Dec 02, 2025.
Build a robust email verification system with ASP.NET Core, Angular, and HTML templates. Enhance user experience, security, and branding with styled emails.
Building an Email Verification System in ASP.NET Core and Angular
Dec 02, 2025.
Build a secure email verification system with ASP.NET Core and Angular! This tutorial covers registration, token generation, SMTP email sending, and more. Protect your app from fake accounts!
Using Angular + ASP.NET Core Web API Login & JWT Authentication
Dec 02, 2025.
Build a secure Angular login system with ASP.NET Core Web API and JWT authentication. This tutorial guides beginners through each step, from token generation to API protection.
🚀 Understanding the Old vs New ASP.NET Core Pipeline: A Complete Guide
Dec 02, 2025.
Explore the evolution of the ASP.NET Core pipeline! This guide breaks down the old (pre-.NET 6) vs. new (Minimal Hosting Model) approaches, highlighting key differences and benefits. Learn which model suits your project best for modern .NET development.
Login + Register + JWT + Guards full project tutorial | Asp.Net Core
Dec 02, 2025.
Build a complete authentication system with Angular and ASP.NET Core! Includes JWT, user registration, login, route guards, and secure API endpoints. A full tutorial!
Two-Factor Authentication (2FA) | A Complete Step-by-Step Guide Using ASP.NET Core and Angular
Dec 02, 2025.
Implement robust 2FA in your ASP.NET Core Angular apps! This step-by-step guide covers backend (SQL Server, TOTP) & frontend (QR codes, Google Auth) integration.
Background Tasks with Hosted Services in ASP.NET Core: A Complete Guide
Dec 02, 2025.
Master ASP.NET Core background tasks using Hosted Services! Learn to implement IHostedService, BackgroundService, dependency injection, scheduling, and best practices for robust, scalable applications.
How to Fix “This localhost page can’t be found – HTTP ERROR 404” in ASP.NET Core
Dec 01, 2025.
Troubleshoot and fix the "This localhost page can't be found - HTTP ERROR 404" error in ASP.NET Core MVC. Learn about routing, controllers, views, and common mistakes to avoid. Ensure correct URLs, routing configuration, and view placement for a smooth debugging experience. Master ASP.NET Core MVC development.
Dependency Injection Deep Dive in ASP.NET Core
Nov 27, 2025.
Unlock the power of Dependency Injection (DI) in ASP.NET Core! This comprehensive guide covers everything from beginner basics to advanced patterns, with real-world examples.
Modern Configuration System in ASP.NET Core
Nov 28, 2025.
Explore ASP.NET Core's modern configuration system: flexible, secure, and environment-aware. Master providers, options, secrets, and best practices for scalable apps.
Unified Logging and Diagnostics in ASP.NET Core
Nov 28, 2025.
Master ASP.NET Core logging & diagnostics! Learn unified logging, structured logging, and centralized exception handling. Gain observability for robust applications.
Middleware Pipeline in ASP.NET Core
Nov 28, 2025.
Master the ASP.NET Core middleware pipeline! Learn how to build robust web apps by understanding request handling, custom middleware, and best practices. Optimize performance and security!
Contact Management App — ASP.NET Core + Angular
Nov 26, 2025.
Build a production-ready contact management app using ASP.NET Core and Angular. Covers CRUD, import/export, security, and best practices for maintainability.
Full-Stack CRUD Application with Angular + ASP.NET Core + EF Core
Nov 27, 2025.
Build a full-stack CRUD app with Angular, ASP.NET Core, and EF Core. Learn to integrate frontend, backend, and database for scalable web applications. Step-by-step guide!
Integrating SQL Server with Angular + ASP.NET Core for Full-Stack Development
Nov 27, 2025.
Build full-stack web apps using Angular, ASP.NET Core, and SQL Server. Learn step-by-step integration for scalable, maintainable, enterprise-ready solutions. Master the stack!
Mini Chat App (SignalR Basics) – Angular + ASP.NET Core
Nov 26, 2025.
Build a real-time mini chat app with Angular and ASP.NET Core SignalR! This tutorial covers backend setup, Angular integration, and deployment considerations. Learn SignalR basics!
A Practical Comparison of Interface vs Abstract Class Using a Real ASP.NET Core Project
Nov 27, 2025.
Explore interface vs abstract class in ASP.NET Core with a practical e-commerce example. Learn when to use each for cleaner, maintainable, and scalable code. Master real-world application architecture and dependency injection.
Implementing Repository Pattern with ASP.NET Core, EF Core, and Angular
Nov 27, 2025.
Build a full-stack app with ASP.NET Core, EF Core, and Angular using the Repository Pattern. Learn to structure your backend for maintainability and scalability.
Task Scheduler — ASP.NET Core + Angular
Nov 26, 2025.
Build a robust task scheduler with ASP.NET Core and Angular. Includes Hangfire, retries, monitoring, and notifications. Production-ready with best practices.
End-to-End CRUD App with Paging, Sorting & Filtering | Angular + Asp.Net Core
Nov 26, 2025.
Build a full-stack CRUD app with Angular 17 and ASP.NET Core 7! Includes paging, sorting, filtering, and SQL Server integration. Perfect for learning!
How Angular Talks to ASP.NET Core: A Simple Explanation of REST APIs
Nov 27, 2025.
Unlock seamless Angular & ASP.NET Core communication! Learn REST API basics, setup, and best practices for building dynamic, scalable web applications.
How to Set Up Your First Angular + ASP.NET Core Development Environment
Nov 27, 2025.
Get your Angular + ASP.NET Core development environment up and running! This step-by-step guide covers installation, setup, CORS, and best practices for full-stack success.
A Complete Guide to SOLID Principles and How Interfaces Support Them in Real ASP.NET Core Applications
Nov 27, 2025.
Master SOLID principles in ASP.NET Core! Learn how interfaces enable clean architecture, dependency injection, and scalable applications. Real-world examples included.
File Manager UI + API — ASP.NET Core + Angular
Nov 26, 2025.
Build a robust file manager with ASP.NET Core API and Angular UI. Securely handle uploads, browsing, previews, and management. Production-ready code included!
Repository Pattern in ASP.NET Core: A Simple Explanation
Nov 27, 2025.
Learn the Repository Pattern in ASP.NET Core! This tutorial provides a simple, step-by-step guide to implement clean, maintainable, and testable data access layers.
Simple Blog Platform — ASP.NET Core + Angular
Nov 26, 2025.
Build a full-stack blog with ASP.NET Core and Angular! This guide covers architecture, EF Core, authentication, image uploads, and clean UI patterns for production.
Step by Step Practical: Using Dependency Injection with Repository Pattern and ASP.NET Core Web API
Nov 27, 2025.
Master ASP.NET Core Web API development! Learn to implement Dependency Injection with the Repository Pattern for clean, testable, and maintainable code. Step-by-step guide included.
Build a Simple CRUD App (Angular Frontend + ASP.NET Core API + SQL Server)
Nov 26, 2025.
Build a full-stack CRUD app with Angular, ASP.NET Core API, and SQL Server. Step-by-step guide covers database, API, UI, and testing. Perfect for learning!
Understanding Controllers, Routes & Endpoints in ASP.NET Core
Nov 27, 2025.
Unlock ASP.NET Core API development! Master controllers, routes, and endpoints for building robust and scalable web applications. Beginner-friendly guide.
Expense Tracker — ASP.NET Core + Angular
Nov 26, 2025.
Build a robust expense tracker using ASP.NET Core and Angular. Includes authentication, CRUD, summaries, recurring expenses, budget alerts, and CSV export. Production-ready!
1
-
100
of
5012
<<
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.