Aryan Mehtaaryanmehta.hashnode.dev·12 hours agoMastering API Development in .NET 9: A Complete Guide to Persistence, CRUD Operations, and MigrationsAs modern web applications evolve, building robust APIs that can handle dynamic data and persist changes is crucial for success. In this guide, we'll dive into how to build APIs using .NET 9, integrate them with Entity Framework for data management, ...32 reads.NET
Tarun Sharmatapstechie.hashnode.dev·Dec 19, 2024What is ORM and How it is Helpful to Us?Introduction to ORM Imagine you’re a developer managing a complex web application for an e-commerce platform. You’re dealing with tons of data: customer records, order details, inventory management, and more. Each day, you write SQL queries to insert...ORM (Object-Relational Mapping)
Tojo RODIALSONtojo.hashnode.dev·Nov 22, 2024Guide to Choosing the Ideal ORM for IT ProjectsAn Object-Relational Mapper (ORM) is a programming technique for converting data between incompatible systems using object-oriented programming techniques. 1 In the context of database applications, it simplifies interactions between programming la...orm
LakshmiPerumalmalalakshmi.hashnode.dev·Nov 19, 2024Spring Framework and Spring bootSpring Core: Spring is one of the most powerful frameworks in Java. Of course, there are many other frameworks like Struts and EJB, and on the database side, we have JPA. However, with the help of Spring, we can achieve everything in one framework. O...10 likes·30 readsSpringboot
Bruce Wellsblog.phpfui.com·Oct 21, 2024Implementing Active Records in PHP - Part 1Active Records are a defined Design Pattern with it’s own Wikipedia page! So why create another Active Record implementation? Pretty simple. The existing PHP Active Record implementations are bloated and slow and hard to configure. So here is how to ...27 readsPHP
Nitish Srinivasanitishs.hashnode.dev·Oct 16, 2024REST APIs and JPAREST APIS REST → Representational State Transfer API → Application Programming Interfaces Http Verb: GET → To just get the data from a server and look at it PUT → To modify the data POST → To create new data DELETE → To delete data ORM ORM → Object R...#SpringDataJPA
Alexander Arlund Nørgaardblog.alexnorgaard.dk·Sep 11, 2024Building an Events Application: Choosing the right toolsSo much water has flowed under the bridge since my last blog post. Mind you that I have been working quite a lot on this project, I just didn't get around to write about it. So, let's pick up where we left off! In my last post I talked about some of ...26 readsgolang
Maheshwara sampathzcodeblog.hashnode.dev·Aug 27, 2024Building a CRUD API with Next.js and PrismaHi Everyone! In this blog post, we'll dive into building a backend API using Next.js and Prisma. We'll explore the basics of setting up a CRUD API and how these tools can work together. Let's get started! 🚀 What is Next.js and Prisma? Before we dive...32 readsNext.js
Pulkitblogs.devpulkit.in·Aug 17, 2024Setting Up Prisma ORM with PostgreSQLTitle: Setting Up Prisma ORM with PostgreSQL Content: ORM stands for Object-Relational Mapping. It is a technique that allows developers to interact with a database using an object-oriented approach. Instead of writing raw SQL queries, you can use an...4 likes·48 readsprisma
Anuj Kumar Upadhyayanuj1.hashnode.dev·Aug 6, 2024Using SQL Databases with Node.jsWelcome to Day 12 of our Node.js blog series! 🤔 Today, we'll explore the integration of SQL databases with Node.js. While NoSQL databases like MongoDB offer flexibility, SQL databases provide strong consistency, ACID (Atomicity, Consistency, Isolati...10 likesNodejsNode.js