#orm

5 writings

Entity Framework Upside Down

This article challenges common Entity Framework usage patterns and argues that many developers are implementing it incorrectly. The author explains why simply mapping databases without leveraging EF's core features creates unnecessary overhead and demonstrates why understanding the difference between demos and production environments is critical.

3 min read 420 words

Massive Effect

This post examines Massive, a Micro ORM by Rob Conery, focusing on the 'why' behind its design philosophy rather than tutorials. Learn how this innovative tool represents a shift in data access approaches and why developers should consider alternatives to traditional ORMs.

8 min read 1,568 words

Arrival of David aka Micro Orm

This post examines Micro ORMs as a solution to the performance problems created by traditional ORMs. The author discusses how tools like Dapper and OrmLite offer the productivity benefits of ORMs while maintaining database access performance comparable to direct SQL queries.

8 min read 1,402 words

Going to Vietnam Because of ORM

This technical article explores the dangers of improper ORM usage in large enterprise applications, using real-world examples from LINQ to SQL and Entity Framework. The author discusses how monolithic edmx files and naive ORM implementations can cripple performance and maintainability in projects with thousands of tables and multiple modules.

5 min read 901 words

Map your self using ORM

This post explores the evolution from traditional connection and command classes to modern ORM frameworks in .NET development. The author discusses common database connectivity challenges and explains why ORMs like NHibernate are essential for building efficient applications.

6 min read 1,169 words