Querying Data with Entity Framework CoreQuerying data is one of the primary tasks performed with Entity Framework Core. We'll focus on simple queries using LINQ, which seamlessly translates into SQL queries. Let's explore some examples: GET To retrieve a user by their ID: public async ...Jul 15, 2023
The Power of Entity Framework CoreIntroduction Welcome to our blog, where we delve into the world of Entity Framework Core (EF Core)! In this post, we'll explore how EF Core, a library created by Microsoft, simplifies database access, particularly for relational databases. We'll also...Jul 15, 2023
Exploring PL/SQL Part 2: Loops, Conditions, and Mathematical FunctionsFOR Loop: The FOR loop is a powerful tool in PL/SQL for iterating over a set of values. An interesting clarification is that it's not necessary to declare the iteration variable (i) when using the PLS_INTEGER data type. This is because the PLS_INTEG...Jul 10, 2023
Exploring PL/SQL Part 1: Key ConceptsIntroduction: As I delve into the world of PL/SQL, I am excited to share my learning journey with you. In this blog post, I will be exploring some essential concepts in PL/SQL that I have found incredibly useful for my work. By sharing my notes and i...Jul 9, 2023
Dvorak. My preferred layout for Touch-typingWhy dvorak? Well, when I started having wrist pain, I realized that I had to make changes in the way I write. And while I still haven't reached a high speed of words per minute. I can say that my pain is less. Here is my list of collected resources t...Oct 31, 2022
My Favorite Extensions for Visual Studio & Visual Studio CodeVisual Studio Code Prettier - Code formatter: It enforces a consistent style by parsing your code and re-printing it with its own rules that take the maximum line length into account, wrapping code when necessary. Git Graph: View a Git Graph of yo...Oct 25, 2022
Useful tools for CSSThere are times when you find yourself in need of quick solutions for creating shadows within a div or finding the perfect background pattern. Fortunately, there are several handy tools available to assist you in such situations. Let's explore some o...Oct 16, 2022