Home

Blogs

DevProxy: How to Test API …

The Problem: When Parallel Programming Backfires If you’ve ever optimized your C# API calls with parallel programming, you might know this story. Your client wants faster performance. You run multiple API requests in parallel. Locally, everything flies — especially late at night when traffic is low. …

Efficient Multi-List …

The Problem: Multiple List Queries and Throttling When working with related data across multiple SharePoint lists, developers often fall into the trap of making multiple individual queries: // ❌ Bad approach - Multiple API calls var customers = context.Web.Lists.GetByTitle("Customers"); var …

Microsoft Graph SDK …

What is Microsoft Graph? Microsoft Graph is the unified REST API for Microsoft 365. Think of it as a single gateway to access data across SharePoint, Teams, OneDrive, Outlook, Azure AD, and more - all through one consistent API. Graph vs CSOM/PnP.Framework: Graph: Modern REST API, works across all …