OOP in C# Step by Step
What is OOPS and what is the advantage of OOP? OOP stands for “Object-Oriented Programming.” Remember, it’s OOP not OOPS,’S’
A Practical Approach
What is OOPS and what is the advantage of OOP? OOP stands for “Object-Oriented Programming.” Remember, it’s OOP not OOPS,’S’
You have an on-premises network that contains several servers. You plan to migrate all the servers to Azure. You need to recommend a solution to ensure that some of the servers are available if a single Azure data center goes offline for an extended period. What should you include in the recommendation? Try to answer this.
Azure is a cloud computing platform and infrastructure created by Microsoft for building, deploying, and managing applications and services through a global network of Microsoft-managed data centers.
HTTP Triggered Azure Functions are a type of Azure Functions that can be triggered through an HTTP request. In this tutorial, we’ll go through the steps to create an HTTP triggered Azure Function in the Azure portal.
Boxing and unboxing are two important concepts in . NET.
In Ruby, you can create configuration files using a YAML (YAML Ain’t Markup Language) file. Here’s an example of how to create and use a YAML config file in a Ruby application
SSDL, CSDL, and MSL are three parts of the Entity Data Model (EDM) in Entity Framework.
Loadings in Entity Framework Core refer to the process of loading related data, or “navigation properties,” of an entity.
In Entity Framework Core, you can specify which navigation properties should be loaded along with the main entity, either explicitly or implicitly.
.NET Core’s Dependency Injection (DI) framework provides three-lifetime options for resolving dependencies: Transient, Scoped, and Singleton.
Dependency Injection (DI) is a design pattern that helps in creating loosely coupled applications. It allows developers to write clean, maintainable, and testable code.
Time-triggered Azure Functions are a type of Azure Functions that are triggered by a timer, rather than by an event or a REST API call. They run on a schedule specified by a CRON expression and can be used for tasks such as running batch jobs, cleaning up old data, and generating reports. These functions are created using the Azure Functions runtime and can be written in a variety of programming languages, including C#, JavaScript, and Python.
Async and Await are two keywords in C# that make it easier to write asynchronous code. They are used to write asynchronous methods that can run in the background, without blocking the main thread, and without causing the application to become unresponsive.
C# extension methods are a way to extend the functionality of existing classes, structures or interfaces without having to modify their source code. They are defined as static methods in a static class, and the first parameter of the method must be preceded by the this keyword, which indicates that the method is an extension method.
A tuple is a data structure that can store multiple values of different data types in a single unit. In C#, tuples are used to return multiple values from a method, or to store a group of values without creating a separate class.