Gracefully Handling Entity Framework Exceptions with EntityFramework.Exceptions
A guide to using the EntityFramework.Exceptions library to handle specific database errors like constraint violations in Entity Framework.
A guide to using the EntityFramework.Exceptions library to handle specific database errors like constraint violations in Entity Framework.
A developer shares lesser-known Entity Framework features like AutoInclude and HasQueryFilter to improve code efficiency and avoid common pitfalls.
Explains how to filter on JSON array columns in Entity Framework Core 7 using SQL workarounds when LINQ translation fails.
A guide to creating, connecting to, and deleting Google Cloud Platform's managed Redis service, Memorystore, via UI and CLI.
A guide to creating, connecting to, and deleting MySQL Cloud SQL instances on Google Cloud Platform using both the Console UI and gcloud CLI.
A critical opinion piece arguing that AWS Amplify is harmful for production use, especially its GraphQL data layer, and promotes simpler alternatives like Postgres.
Entity Framework Core 8 introduces raw SQL queries that can return unmapped types, a highly anticipated feature for .NET developers.
A talk on leveraging PostgreSQL's advanced features within Django web framework for more powerful database-driven applications.
Explores efficient database methods for reordering items, inspired by Trello/Jira drag-and-drop functionality.
A tutorial on integrating Entity Framework Core 7 into an ASP.NET Core web application, covering project setup and database configuration.
A guide to emulating window functions in MySQL 5.7 using local variables, highlighting the limitations and risks of this approach.
Explains the benefits of executing database queries with jOOQ's API instead of extracting SQL for use with other tools like JdbcTemplate.
jOOQ introduces a LoggingConnection for R2DBC to log all reactive SQL statements, useful for debugging in reactive applications.
A guide to integrating the Neo4J graph database with Spring Boot, including entity definition, data creation, and querying nodes and relations.
Entity Framework 8 introduces raw SQL queries for unmapped types, reducing boilerplate code for developers.
A tutorial on implementing a simple, reusable pagination solution for Entity Framework using a PagedList class and extension method.
Explains how to delete a database record in Entity Framework without loading it first, covering both classic and .NET 7+ methods.
A guide for developers on when to use the jOOQ API versus writing native SQL, comparing pros and cons for each approach.
Learn how to access and manage your WordPress database directly from the dashboard using the Adminer plugin as an alternative to phpMyAdmin.
A tutorial on building a basic embedded SQL database in Zig using RocksDB, covering lexing, parsing, storage, and execution.