SSDL vs CSDL vs MSL in Entity Framework
SSDL, CSDL, and MSL are three parts of the Entity Data Model (EDM) in Entity Framework.
A Practical Approach
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.
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.
.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.
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.