Mushahid Abbasimushahidabbasi.hashnode.dev·Sep 5, 2024Asp.net Mvc Database First Approach CrudCreate 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...asp.net mvc
Mritunjay Kumarcodecomponents.hashnode.dev·Aug 24, 2024Asp.net Mvc 5This 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...ASP.NET
Rohit Surwadewildire.hashnode.dev·Aug 10, 2024Code First Approach - ASP.NET MVC C#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 ...75 readscodefirstentity
Facile TechnolabforFacile Technolab's Blogfaciletechnolabblog.hashnode.dev·Jun 1, 2023How to Turbocharge Your ASP.NET Core Web Application for Superior SpeedASP.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...Facile Technolab
Facile TechnolabforFacile Technolab's Blogfaciletechnolabblog.hashnode.dev·May 22, 2023🚀 Securing APIs in ASP.NET Core with Azure Active Directory 💻🔒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...Facile Technolab
Geilton Xaviergeiltonxavier.hashnode.dev·Jul 29, 2016Entendendo e Aplicando Filtros no ASP.NET MVC (HandleError)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...76 readsfilters
Tadit Dashblog.taditdash.com·Nov 9, 2015EntityType: EntitySet ‘[Entity Name]’ is based on type ‘[Entity Name]’ that has no keys definedSo, the exception completely indicates to us that it is not able to find a Key in the model, which is defined in the database for that entity. Problem When you design a model class for the entity, you define many properties including keys, if any. Bu...382 readsasp.net mvc