Hemant Singhmemorycrypt.hashnode.dev·Sep 12, 2023Implementing Transactions in Entity Framework Core for Consistent Database OperationsIntroduction Database operations often involve multiple steps that need to be executed together to maintain data consistency. Entity Framework Core (EF Core) provides a robust way to manage transactions, ensuring that a series of database operations ...Discuss·97 readsC# and .NET.NET
Hemant Singhmemorycrypt.hashnode.dev·Sep 10, 2023Using CRUD Operations in Entity Framework with In-Memory Database in Web APIIf you are short on time, you can directly view the code repo here. Introduction In this article, we will go over how to implement CRUD operations in Web API with the help of Entity Framework. Furthermore, we will use the In Memory database provided ...Discuss·51 readsC# and .NET.NET
Tim Hiltontjhilton.hashnode.dev·Aug 31, 2023Using SQL Server to manipulate JSON data structures, including a boolean gotchaThe problem I was solving I recently did some work to update the structure of some JSON stored in a SQL Server database. The JSON started out as a flat list of properties, and I wanted to add some structure by moving the properties into nested JSON o...DiscussCode & technical writingSQL Server
Laiba Razi Khanlaiba.hashnode.dev·Aug 22, 2023How To Install Entity Packages in .Net ProjectsIntroduction: When developing a project that interacts with a database, Entity Framework (EF) proves to be an invaluable tool. It streamlines the process of making database migrations and establishing connections with SQL Server. This guide will walk...Discuss100 DAYS OF Coding In Dot Net Coreasp.net core
Pratik JagrutPropsj.codes·Aug 16, 2023Go GraphQL Go!!!Have you ever wondered how computers and applications communicate with each other to fetch information? Well, they use something called an API, which stands for Application Programming Interface. APIs act as a bridge that allows different software sy...Discuss·895 readsGo Language
M B A R Kmbarkt3sto.hashnode.dev·Aug 1, 2023EF Core and PostgreSQL: Working with ArraysWhen it comes to working with databases and Entity Framework Core (EF Core), PostgreSQL has gained popularity for its robust features and excellent support for advanced data types. One such powerful feature is its support for arrays, allowing you to ...Discuss·1 like·119 readsefcore
M B A R Kmbarkt3sto.hashnode.dev·Jul 31, 2023EF Core and PostgreSQL: Check ConstraintsCheck constraints are an essential aspect of maintaining data integrity in a PostgreSQL database. They allow you to define rules that data in a specific column must adhere to, ensuring that only valid and acceptable data can be inserted or updated. I...Discuss·148 readsefcore
M B A R Kmbarkt3sto.hashnode.dev·Jul 30, 2023EF Core and PostgreSQL: Working with JSON DataPostgreSQL is a powerful relational database that supports JSON data types, allowing developers to store and retrieve JSON data directly in the database. In this blog post, we will explore how to leverage Entity Framework Core (EF Core) to work with ...Discuss·297 readsPostgreSQL
mauriciogmauriciogcode.hashnode.dev·Jul 15, 2023Querying 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 ...Discussentity framework
mauriciogmauriciogcode.hashnode.dev·Jul 15, 2023Entity Framework Core: Repository Pattern & Unit of WorkThe Repository Pattern is an abstraction of the data layer. In essence, a repository acts as a black box that can receive and retrieve data from your database. The beauty of the repository pattern lies in its ability to abstract the implementation de...Discussentity framework