CDCoding Dropletsincodingdroplets.com·Jun 14 · 10 min read413 Request Entity Too Large in ASP.NET Core: Causes and FixesGetting a 413 Request Entity Too Large error in your ASP.NET Core API can be maddening — you raise the limit in one place, reload the app, and the error is still there. That is because this error does00
CDCoding Dropletsincodingdroplets.com·Jun 7 · 12 min readHow to Protect ASP.NET Core APIs Against XXE InjectionXML External Entity (XXE) injection remains one of the more dangerous vulnerabilities in ASP.NET Core APIs that accept or process XML — and it is frequently misunderstood. Most .NET developers assume 00
CDCoding Dropletsincodingdroplets.com·Jun 2 · 11 min readSieve vs Gridify in .NET: Which Filtering Library to Use?Every production ASP.NET Core API eventually needs the same thing: a way for clients to filter a list of resources, sort the results, and page through them efficiently. The naive approach - hand-rolli00
CDCoding Dropletsincodingdroplets.com·May 26 · 12 min readSQL Server vs PostgreSQL for .NET Teams: Which Database Should You Use in 2026?When a new ASP.NET Core project kicks off and the team reaches the "which database?" discussion, two names dominate the whiteboard: SQL Server and PostgreSQL. Both are mature, battle-tested relational00
CDCoding Dropletsincodingdroplets.com·May 26 · 11 min read415 Unsupported Media Type in ASP.NET Core Web APIs: Causes and FixesThe 415 Unsupported Media Type error is one of those errors that stops you cold. Your endpoint looks correct, your request body looks right, and yet ASP.NET Core refuses to process it. The good news: 00
CDCoding Dropletsincodingdroplets.com·May 18 · 8 min readDapper + EF Core Hybrid in ASP.NET Core: The Right Tool for Each JobMost .NET teams pick one data access tool and stick with it. EF Core for everything, or Dapper for everything. But the most performant production systems often use both — EF Core where its strengths m00
CDCoding Dropletsincodingdroplets.com·May 2 · 12 min readAPI Response Standardization in ASP.NET Core: Problem Details vs Custom Envelope vs Minimal Wrapper — Enterprise Decision GuideEvery ASP.NET Core team eventually faces the same question: how should our API communicate with its consumers? Not just when something goes wrong - but in every response, success or failure. The decis02S
AUAman Upadhyay (CleverWizard)inblog.cleverwizard.com·Apr 22 · 3 min readHow to Find Who Modified (and Created) a Plugin in Dynamics 365 CE / Power Platform (Dataverse)In this post, we’ll look at how to query the Plugin Assembly entity directly to retrieve the creator and modifier details within Dynamics 365 CE / Power Platform using a simple GET request. The Chall00
TTechininpowerplatformdev.hashnode.dev·Mar 15 · 4 min readHow to Count More Than 5000 Records in Dataverse and Display in Power AppsWhen building applications with Microsoft Power Apps and Microsoft Dataverse, developers often need to display the total number of records in a table. At first glance, this seems simple. However, when00
CDCoding Dropletsincodingdroplets.com·Mar 10 · 7 min readASP.NET Core API Versioning: Which Strategy Fits Enterprise Systems?Modern enterprise teams rarely struggle to add version numbers to APIs. The real challenge is choosing a versioning model that protects client integrations, supports controlled platform change, and do00