Translating NHibernate LINQ query to SQL
A guide to translating NHibernate LINQ queries to SQL without executing them, using a custom ToSql() extension method for debugging.
A guide to translating NHibernate LINQ queries to SQL without executing them, using a custom ToSql() extension method for debugging.
A technical guide on configuring NHibernate to log generated SQL statements to ASP.NET Core's built-in logging system using interceptors.
Explains how to use NHibernate's future results feature to batch database queries, reducing network traffic and improving performance.
Introducing NHInsights, a custom NHibernate driver for Oracle that integrates with Application Insights to track database query dependencies.
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.
Fixes an NHibernate.Linq bug where queries with the same alias on different association paths produced incorrect results.
A developer troubleshoots an NHibernate error when switching to SqlClient, explaining the mapping issue and solution.
Explains how to perform efficient batch database operations by integrating raw ADO.NET commands within an NHibernate transaction to avoid ORM overhead.