Apr 19, 2025 · 6 min read · Handling file uploads is a common requirement in almost every web application. However, writing the same validation logic (checking file types, sizes) and storage operations inside every Controller action violates the DRY (Don't Repeat Yourself) prin...
Join discussionJan 27, 2025 · 5 min read · Authentication is crucial for modern web applications, ensuring secure user access while keeping the experience smooth. When building a .NET web application for both internal users (like employees) and external users (such as customers or partners), ...
Join discussion
Dec 30, 2024 · 3 min read · TL; DR: Syncfusion ASP.NET MVC suite is updated to align with .NET Framework changes. Key updates include ending support for .NET 4.0/4.5, discontinuing MVC4, and upgrading MVC5 to .NET 4.6.2. Update your app now to maintain security and performance....
Join discussion
Sep 5, 2024 · 3 min read · Create custom with database first approach ChatGPT said: ChatGPT Memory updated Creating a CRUD application using the Database First approach in ASP.NET MVC 5 involves the following steps: 1. Set Up Your Database Start with an existing SQL Server da...
Join discussionAug 24, 2024 · 3 min read · This is the last version of MVC from the .NET Framework. The next version was first called MVC 6 but was later renamed to ASP.NET Core MVC and moved to .NET Core. So, let's start by learning ASP.NET MVC 5. Design Patterns Design patterns are best pra...
Join discussion
Aug 10, 2024 · 7 min read · Today, we'll delve into the Code First approach of Entity Framework, a powerful technique for database management in .NET applications. In this tutorial, we'll focus on how to use Code First Entity Framework to generate your database efficiently. By ...
Join discussion
Jun 1, 2023 · 5 min read · ASP.NET Core is well known for its best performance and there is no doubt about it. But, there are times when you still face very slow-loading pages. Today, I'm going to share with you the story of one of my experiences from the past when I fell into...
Join discussion
May 22, 2023 · 6 min read · In today's digital world, Service Oriented Architecture (SOA) is the most common and popular way of implementing the software solutions because it enables the development of the solutions that are reusable across the multiple applications in the orga...
Join discussion
Jul 29, 2016 · 3 min read · O que são filtros Filtros são recursos que existem no ASP.NET MVC que nos permitem injetar comportamentos a nível de Controller, Action e em nível Global. E nesse post vou mostrar e abordar de forma prática como trabalhar com filtros. Inicialmente v...
Join discussion