Hello All, In this tutorial we will see how to get started with ASP.NET Core web API with Entity Framework core. In this tutorial I will be using Visual studio 2022 community edition and .NET 6.0 core, Entity Framework Core 6.0 and SQL Server 2019 community edition. I will be using Database First Approach where I will be […]
What is Entity Framework? Definition (Microsoft): The Microsoft ADO.NET Entity Framework is an Object/Relational Mapping (ORM) framework that enables developers to work with relational data as domain-specific objects, eliminating the need for most of the data access plumbing code that developers usually need to write. Using the Entity Framework, developers issue queries using LINQ, then […]
In this article, we will understand how to work with strings in C#, use string class in C# and finally used learn how to use the String Builder class in C#. In C# strings are created by enclosing a series of characters in double quotation marks, these series of characters can be letters, numbers, and […]
Design Pattern – Singleton In this blog we discuss and learn about the easy design pattern of all the design patterns – the Singleton pattern. This article is an attempt to provide the new developers / readers with some basic understanding about singleton pattern and its implementation in my words. Singleton pattern when implemented provides […]