C#
Graph Batching for File …
The Problem That’ll Drive You Crazy Picture this: you need to download 50 files from SharePoint using Microsoft Graph. Being a good developer, you decide to use batching instead of making 50 individual API calls (because nobody wants to wait that long, and Microsoft’s throttling limits …
CSOM Performance …
The Problem: One-by-One Operations Kill Performance Following up on my previous post about DevProxy and throttling testing, there’s another critical performance issue I see regularly in SharePoint CSOM code: executing operations one by one instead of batching them. Consider this common pattern …
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 …