1. What is EmptyResult in MVC? EmptyResult is used when you want to execute logic return inside the controller action method but does not want any result back to the…
Dhanik Lal Sahni
Dhanik Lal Sahni
With over 18 years of experience in web-based application development, I specialize in Salesforce technology and its ecosystem. My journey has equipped me with expertise in a diverse range of technologies including .NET, .NET Core, MS Dynamics CRM, Azure, Oracle, and SQL Server. I am dedicated to staying at the forefront of technological advancements and continuously researching new developments in the Salesforce realm. My focus remains on leveraging technology to create innovative solutions that drive business success.
-
-
1. What is angular? Angular is a framework for building client applications in HTML and either JavaScript or a language like TypeScript that compiles to JavaScript. 2.What are Decorators in…
-
The Angular CLI is a command line interface tool that automate development tasks. It will help in Create New angular application Add features to existing application Run development server with…
-
Angular CLI tool has many useful commands that helps in generating applications to preparing build. Let us see those wonderful commands. Angular CLI Commands ng new :- ng new command…
-
.NET Core is a cross-platform, open source, and modular .NET platform for creating modern web apps, microservices, libraries and console applications. This release includes the .NET Core runtime, libraries and…
-
While working on real time projects, we normally create so many intefaces, clasess and using unmanged resources like DB connection, files operation etc. To manage performance of the application these…
-
Cohesion and Coupling are essences of a good design process. The system should be decomposed into many modules to make it manageable for system changes. Projects which are well-designed are…
-
Cohesion and Coupling are essences of a good design process. The system should be decomposed into many modules to make it manageable in system changes. Projects which are well-designed are…
-
We have two approaches to build web applications in current time: Traditional web applications and Single page applications (SPAs). Traditional web applications perform most of the application logic on the server side whereas single page…
-
The Liskov Substitution Principle states that subtypes must be substitutable for their base types. In order to substitute work, child class must not Remove base class behavior Violate base class…