Leveraging C#’s substring to truncate a string, I am going to demonstrate how to create a string extension with a new re-usable function called Truncate.
Category: Development
-
Destructuring assignment JavaScript
The destructuring assignment syntax is a Javascript expression which allows for the unpacking of value from arrays or property from objects in specialized variables. It allows a fast way for an ad-hoc package of data.
-
Group an array of objects by key with Javascript

I feel so privileged being able to use Linq group by statements when I’m working in C# to quickly and easily group a list of objects; however, when it comes to Javascript Arrays, it’s not quite so easy.
-
Entity Framework Core Database First (with examples)

Entity Framework Core is a popular object relational mapping software on the market. The .NET Core provides an efficient method for writing queries in C# while EF Core is responsible for transforming it into a similar SQL language and executing it on a connected database.
(more…) -
What is lazy loading in Entity Framework
In this article, you’ll discover why lazy loading with Entity Framework is so beneficial and how you can implement it yourself.