Introduction Hi readers! Hope you all have a good time. After presenting your content on .netcoreinterviewquestions, sqlinterviewquestions, c#partialclasses, MVC, and mobile app, now we’ll focus on the latest advanced ASP.netcorefeatures. It will help developers with fundamental knowledge for developing ASP.NET Core apps, along with dependencyinjection (DI), configuration, middleware, and other […]
Core
Find difference between AddTransient Vs AddSingleton Vs AddScoped in ASP.NET Core
Introduction Hi again! After seeing the difference between value type and reference type variables, and asp.net core interview questions, we’ll now find the difference between addtransient vs scoped vs singleton in ASP.net core. Recognizing the complete life cycle of DI (Dependency Injection) is necessary in ASP.Net Core apps. As we […]
How to use EF Core query types in ASP.NET Core 7
Entity Framework Core (EF Core for short) is a popular ORM (object-relational mapper) from Microsoft that allow you to perform CRUD operations (create, read, update, and delete) without having to know how the data is persisted in the underlying database. When working with ORMs, we often leverage models that are […]