Rohit Ranjannowiknow.site·6 hours agoDecoding Django ORM: Mastering aggregate() and annotate()Django's ORM (Object-Relational Mapper) is a powerful tool for interacting with your database. Two particularly useful, but sometimes confusing, methods are aggregate() and annotate(). Both allow you to perform calculations on your data, but they dif...Django
Danny Crastoblog.danwald.me·12 hours agoAvoid ORM querys at Global ScopeBecause … (1) The query runs every time the application comes up Elastic applications that scale with load, result in an unnecessary DB hits when new instances are added. The effect is multiplicative for each process of your application per pod or co...33 readsDjango
Pravin Jadhavcodetocloud.hashnode.dev·Jan 22, 2025Understanding ORM and ODM: A Simple Guide for Backend DevelopersSure! Here's a simple blog post explaining ORM and ODM for backend developers. If you’re working on the backend of a web application and using a database to store data, you’ve likely heard of ORM and ODM. These terms might sound complicated at first,...orm
Tannutechiegigs-digital-markeing.hashnode.dev·Jan 20, 2025The Role of Social Media in Online Reputation ManagementIn the digital era, social media has become a cornerstone of online reputation management (ORM). With billions of active users across platforms like Facebook, Instagram, Twitter, and LinkedIn, these channels are not only essential for brand visibilit...role of social media in ORM
Tannutechiegigs-digital-markeing.hashnode.dev·Jan 13, 2025Emerging Trends in ORM: What Digital Marketers Need to KnowOnline Reputation Management (ORM) is an ever-evolving field. As digital landscapes shift and consumer behavior changes, staying updated on emerging trends is essential for digital marketers. These trends not only help businesses maintain a positive ...Trends in ORM
Promise Dashpromisedash.hashnode.dev·Jan 10, 2025A Beginner’s Guide to PrismaThis guide will explore Prisma, an open-source ORM (Object-Relational Mapping) tool that simplifies database management in modern applications. Whether you're new to databases or looking for a more efficient way to manage them, Prisma can be a game-c...prisma
Alex Cloudstarblog.alexcloudstar.com·Jan 5, 2025Getting Started with Prisma and Neon DB: A Modern Approach to Database ManagementIn the world of modern application development, managing your database effectively is as critical as writing clean code. Developers today are looking for solutions that are powerful, flexible, and easy to integrate into their workflows. Prisma and Ne...81 readsDatabases
Tannutechiegigs-digital-markeing.hashnode.dev·Jan 4, 2025How to Maintain a Positive Online Presence for Personal BrandingIn today’s interconnected world, your online presence is often the first thing people will see when they look you up—whether it’s potential employers, business partners, clients, or followers. Your personal brand isn't just about your skills or exper...Online presence
Akash Desardaimportidea.dev·Dec 26, 2024How to effectively work with Databases in PythonIntroduction The age-old debate on the use of Raw SQL v/s ORM is still very much alive in today’s world. Let’s see some of the comparing points AspectRaw SQLORM (Object-Relational Mapping) Ease of UseRequires knowledge of SQL syntax and databa...Data EngneeringPython
FENG JUNYUANcrazyrunsnail.hashnode.dev·Dec 22, 2024Refactor: status to statuses using mybatisBefore: <if test="status == 0"> and t.status = 0 and t.status1 = 1 </if> <if test="status == 1"> and t.status = 0 and t.status2 = 2 </if> <if test ="status != 2"> and t.status2 != 2 </if> After: <if test="statuses != null and statuses.size() >...Java