Discover how .NET query filters streamline data access in Entity Framework Core. Learn how to implement global conditions for soft deletes, multi-tenancy, and security, while avoiding common pitfalls. This guide explores best practices and performance tips to help you write cleaner, more maintainable code.
Policy-based Authorization in ASP.Net Core
Learn how to implement policy-based authorization in ASP.NET Core using custom policies, requirements, and handlers. This guide explains how to apply fine-grained access control across controllers, Razor Pages, and endpoints, enabling more flexible and secure authorization strategies for modern web applications.
Use WordPress API to get postmeta
Recently I was asked how to use WordPress API to get postmeta. The goal was to feed a tooltip in an independent web app related to the online user guide. Sounds simple, right ? Well… not that much ! Approach Turns out there’s no native WordPress API to get postmeta endpoint, and by default, postmeta isn’t included in the WordPress…