[Entity Framework v4] Identity map pattern
Explains the Identity Map pattern in Entity Framework v4, a key ORM concept for preventing duplicate object instances and ensuring data consistency.
Explains the Identity Map pattern in Entity Framework v4, a key ORM concept for preventing duplicate object instances and ensuring data consistency.
A developer shares an improved implementation of the session-per-request pattern for NHibernate in ASP.NET MVC, addressing flaws in previous approaches.
Explains why the author chose the Dapper micro ORM for the public-facing part of the fabrik project, focusing on performance and efficient data modeling.
Explains how to use lambda expressions with Entity Framework's Include method for type-safe eager loading, avoiding string-based property paths.
Announcing the release of django-taggit 0.9, a Django app for tagging, with new features, bug fixes, and breaking changes.
A developer proposes a new API for generating Django fixtures more easily, outlining the concept and hoping someone will build it.
A deep dive into the internal architecture and customization API of the django-taggit library for Django.
Fixes an NHibernate.Linq bug where queries with the same alias on different association paths produced incorrect results.
Hades 1.5 released, removing the mandatory Persistable interface requirement and introducing new XML namespace features for Spring/JPA applications.
A proposal for improving Django's application architecture with 'Application Objects' to solve issues like model extensibility and GenericForeignKey misuse.
A technical note on how Django's self-referencing ForeignKey fields can cause unnecessary SQL JOINs and a workaround using the extra() method.
Explains the removal of the Meta.using option in Django's multiple database support and the search for a better, more reusable API.
A technical deep dive into refactoring Django's ManyToManyField to eliminate raw SQL and improve code structure for multi-database support.
A technical analysis of a bug in DbLinq's non-generic Execute method causing invalid cast exceptions, with details on the submitted patch.
A recap of a panel discussion on Object-Relational Mappers (ORMs) in Python, covering selection criteria and unanswered questions.
Announcing a Google Moderator page for submitting and voting on questions for a Python ORM panel at PyCon 2009.
Explores a performance-optimized approach to implementing inheritance and polymorphism in Django's ORM using a caching mixin.
Explains Django's F() object queries for comparing and updating database fields directly within the ORM.
A technical guide on creating a reusable Django manager class to share methods between managers and QuerySets, reducing code repetition.
A developer details optimizing a Django view to analyze chat log data, reducing execution time and database queries.