Encapsulation in CSharp

C# encapsulation

The process of encapsulating one or more elements within a physical or logical container is characterized as encapsulation. Encapsulation prohibits access to implementation details in object-oriented programming. C# also has a feature called abstraction, which is related to encapsulation. Abstraction is a technique for concealing undesired information. Encapsulation, on the other hand, is a way … Read more

Categories C# Tags

FreeCode in ASP NET Core Entity Framework

FreeCode in ASP NET Core Entity Framework

Here’s a checklist of FreeCode Spot tutorials that use Entity Framework. Feel free to use this FreeCode in ASP NET Core Entity Framework. You may also get the source code from my GitHub account @coderbugz How to install Entity Framework Core Blog / How to install Entity Framework Core This article will guide you on How to install … Read more

Executing SQL Scalar Functions

Executing SQL Scalar Functions

In this tutorial, we are going to learn about executing SQL Scalar functions. SQL Scalar function is just like a stored procedure that is written in an SQL script. What are SQL Scalar functions? An SQL scalar function is a user-defined function written in SQL and it returns a single value each time it is invoked. … An inlined SQL scalar function has … Read more

Categories SQL