Tag

C#

What are Shadow Properties that are part of the Entity Framework

Greetings weary travelers!Have you heard about Shadow Properties that are part of the Entity Framework?What are shadow properties?Shadow properties are properties that aren’t defined in your .NET entity class but are defined for that entity type in the Entity Framework Core model.The value and state of these properties are maintained purely in the Change Tracker.Shadow...

A quick guide through Tasks and ValueTasks in C#

Asynchronous programming plays a vital role in modern software development, allowing us to efficiently utilize system resources and create responsive user interfaces. In the realm of C#, two powerful tools that facilitate asynchronous operations are Tasks and ValueTasks. In this blog post, we’ll have a quick overview of Tasks and ValueTasks in C#. Prepare to...

Contact Us